You need to sign in to do that
Don't have an account?
jonathanrico.
Customer Portal CSS Issue on rerender
Hello everyone,
I've been having an issue in the last weeks, it all started in sandbox and now I'm seeing the same behavior in production and that's why I need your help.
When using my VF pages in Customer Portal, the colors of sections and fonts (defined in the Customer Portal customization section) change completely when doing an AJAX call, this is very strange since it was working without any problems. I noticed this only happens in Customer Portal, any ideas?
Thanks in advance!
I have exprienced the same problem.
I tured the standard styles off and added the css links myself. That took care of it however know I am facing another problem.
At times the buttons do not render properly in production while they have no issues in sandbox!
Did either of you came to understand why this was happening and how to deal with it best ? I'm having a similar problem in sites pages. Everything looks nice, but when we rerender elements the css is not applied.
Salesforce help us figure this one out.
We just had an issue where css was defined for a <ul>. When the page loaded the styles were applied but on a rerender the style wasn't applied.
During the rerender the <ul> became a <blockquote>. We added additional css to correct the issue.
#menu li:hover ul.sub-menu {display: block; border: 1px solid #000000; background-color: #FFFFFF; white-space:nowrap;}
#menu li:hover blockquote.sub-menu {display: block; border: 1px solid #000000; background-color: #FFFFFF; white-space:nowrap;}