I tried to customized the error page. But, it seems that :
- my custom css page is not take at first place for 404page, so clarion template is still overwritting my custom css
- I created as well a rt_clarion-error-custom.css which is not taken into account
no way to take inaccount my custom css in error page. Is there any specific trick to do that ?
Please do not post extensions/template specific questions in the "General Discussion" forum. You should post in the extension forum or template forum as appropriate. Most of these forums are for members who have a current PAID membership. Our priority is always to assist paying members.
Thank you for your understanding.
Your membership appears to have expired?
Could you please post a URL to your site (this can be done in the secure area tab if you prefer) so we can look for you. Without a link to page where the problem is on your site it is quite hard for us to provide the best solution due to so many variables. We try to provide file names and line numbers for code changes and if changes have already been made then our advice may be incorrect.
Regards, Mark.
Please search forums before posting. Please make sure your post includes the version of the CMS you are using and a link to the problem. Annotations on screenshots can also be helpful to explain problems/goals. Please use the "secure" tab for confidential information.
So, your custom CSS file is being loaded. What specifically are you trying to change? It could be that you just don't have sufficient CSS specifity to effect an override.
Regards, Mark.
Please search forums before posting. Please make sure your post includes the version of the CMS you are using and a link to the problem. Annotations on screenshots can also be helpful to explain problems/goals. Please use the "secure" tab for confidential information.
The problem is that general custom css is loaded but does not overwrite properties specificaly for error page ! But it works perfectly all over the website. This is specific to error page.
then, I created as well another CSS named rt_clarion-error-custom.css which is not even loaded
this is why I asked if there is a specific way to load / create the error custom css
no, your ordinary custom CSS file should be capable of overriding the error page. please give me an example that does not work so I can check.
Regards, Mark.
Please search forums before posting. Please make sure your post includes the version of the CMS you are using and a link to the problem. Annotations on screenshots can also be helpful to explain problems/goals. Please use the "secure" tab for confidential information.
Which page element are you trying to restyle and which CSS statement does not work?
Regards, Mark.
Please search forums before posting. Please make sure your post includes the version of the CMS you are using and a link to the problem. Annotations on screenshots can also be helpful to explain problems/goals. Please use the "secure" tab for confidential information.
So, it's what I said. Your CSS statement has insufficient CSS specifity to effect an override on the template value. So change...
#rt-logo #logo-inner {
to
a#rt-logo #logo-inner {
and it works just fine.
Regards, Mark.
Please search forums before posting. Please make sure your post includes the version of the CMS you are using and a link to the problem. Annotations on screenshots can also be helpful to explain problems/goals. Please use the "secure" tab for confidential information.