Recent posts

#11
General Code/Script Inquiries / Re: DB-Uniform Collation Quest...
Last post by Dave - September 05, 2026, 05:42:49 PM
Not sure if it helps but all my databases are 'InnoDB' there is no 'MyISam' anywhere
#12
General Code/Script Inquiries / DB-Uniform Collation Question
Last post by Skhilled - September 05, 2026, 03:08:22 PM
When you told me about the tool, you didn't specify which engine I should use, if one at all. Here's what I see in the image. That's the bottom portion of the db in question. Should the tables be MyISam or InnoDB?
#13
EhPortal Support / Re: More Odd behavior when it ...
Last post by deansmar - August 31, 2026, 01:50:03 PM
Thanks..  :D

Sorry, i didn't check the admin side of the response view..

Have just seen it.. ???  :o 
#14
EhPortal Support / Re: More Odd behavior when it ...
Last post by Chen Zhen - August 30, 2026, 01:17:07 AM
RC14 is now in the download section.

This is the only change:
.ehPortal_th {
    display: table-cell;
    text-align: center;
}
.ehPortal_thead {
    display: table-header-group;
}
.ehPortal_tbody {
    display: table-row-group;
    width: 100%;
}

However, the portal pages list is messed up in responsive view & needs to be fixed.
#16
EhPortal Support / Re: More Odd behavior when it ...
Last post by Skhilled - August 25, 2026, 07:39:37 PM
Quote from: Chen Zhen on August 23, 2026, 02:35:24 AM
Quote from: Dave on August 20, 2026, 09:46:50 AMChen I have checked and updated all the Crip themes where the footer is inside the footerfix, if you check WhiteBox now you'll see that it's as it should be. I've also installed the latest EHportal again to check

Oh? Those themes have a border around all pages that includes the footer so I understood it to be by design.
If it's adjusted a bit now so that mods attempting to control the footer CSS do not adjust other things than that sounds good.

It's not really those themes that are an issue.. it's my blundering attempt to use CSS for a certain all around appearance using EhPortal that conflicts with some themes. I need to scrap it and go with something simple that doesn't alter too much other than the portal HTML itself (blocks/pages).


@Chen Zhen We update the themes to try to mimic the originals that Jeff coded. If you find a problem just let us know and we'll do what we can to fix it. :)
#17
EhPortal Support / Re: More Odd behavior when it ...
Last post by deansmar - August 25, 2026, 11:07:14 AM
found it... in the RC12 and RC13 version in the portal.css
.ehPortal_tbody, .ehPortal_thead, .ehPortal_th {
display: flex;
flex-direction: column;
}



in the RC6 version the .ehPortal_th was seperate..  so i have changed the portal.css to this

.ehPortal_tbody, .ehPortal_thead  {
display: table-header-group;
/* flex-direction: column; */
}
.ehPortal_th {
    display: table-cell;
}

this way it displays as a table again..  ;)
#18
EhPortal Support / Re: More Odd behavior when it ...
Last post by deansmar - August 25, 2026, 10:29:30 AM
i will try my best...

if you look at the Screenshots in the privious post and compare them with the ones in this post.
you will notice that the page layout of the below mentioned layouts does not look right..

the layout of the table header are under each other insted of side by side..

Admin -> Ehportal -> Article -> Article List & Page List
Admin -> Ehportal -> Block List -> Edit Block -> Custom Permissions

something to do with the portal.css
.ehPortal_th {
  display: flex:   in version RC6 it was display: table-cell;
#19
EhPortal Support / Re: More Odd behavior when it ...
Last post by Chen Zhen - August 25, 2026, 09:44:16 AM
Quote from: deansmar on August 25, 2026, 05:23:14 AM2. Admin -> Ehportal -> Article -> Article List & Page List
The headers probably need to be looked at..!

3. Admin -> Ehportal -> Block List -> Edit Block -> Custom Permissions
The headers probably need to be looked at..!

Please be more specific with the needed changes.



Are you suggesting that I add some theme specific color inputs?
This may make it complicated for people but I can look into it.
The basics like background & text color.. then I put the CSS vars in the head via the buffer (because the server side PHP needs to output the client JS).
It can be done...
#20
EhPortal Support / Re: More Odd behavior when it ...
Last post by deansmar - August 25, 2026, 05:23:14 AM
nice work Chen..  a lot of changes to the calender..  ;)

on the themes that i have installed everything is fine.. thumbs up

I think that the Responsive mode/display works a treat.. and a green tick can be applyed.. 😊

all that remains is trying to pick the theme's color's up..!  and a couple of Admin headers..
 
1. currentColor is obviously not picking up the theme color's that's a pitty ..!
   So you have changed it to inherit..  which sadly, also does not work..

My Workaround was to declare a color variable in the Theme's
and put that variable in the portal.css for the border and fonts

and changed the mix-blend-mode: hard-light;

one color that i have seen throughout most themes.. is a link color (that changes with the theme)


2. Admin -> Ehportal -> Article -> Article List & Page List
The headers probably need to be looked at..!

3. Admin -> Ehportal -> Block List -> Edit Block -> Custom Permissions
The headers probably need to be looked at..!


i am by no means a coder...  but try and help were i can..
i have played with visual basic, used to use it at work, with other programs to automate output/data onto paper..
i like playing with CSS and making things look nice..