CSS override in article - Joomla! Forum - community, help and support
hi!
i've searched forum , didn't found looking if repost i'm sorry.
this have in template.css:
so when submit article in jce puts links color:#323232, how can prevent of happenning? want website have links #323232 want write article , give link other color.
i believe called css override haven't found way it.
if helps gratefull.
peter
i've searched forum , didn't found looking if repost i'm sorry.
this have in template.css:
code: select all
a {
color:#323232;
text-decoration:none;
}
so when submit article in jce puts links color:#323232, how can prevent of happenning? want website have links #323232 want write article , give link other color.
i believe called css override haven't found way it.
if helps gratefull.
peter
when place link in article, reopen html before saving article , place "class" in tag this:
then in templates css stlye sheet place this:
or whatever want article links be.
you should know, however, best practice usability have links on website styled same, same hover behavior. if think it, you'll realize why.
code: select all
<a href="http://someplace.com/linked-to-page.html" class="article_link" target="_blank">link text</a>
then in templates css stlye sheet place this:
code: select all
a.article_link {
color:#000;
font-weight:bold;
text-decoration:underline;
}
or whatever want article links be.
you should know, however, best practice usability have links on website styled same, same hover behavior. if think it, you'll realize why.
Comments
Post a Comment