Formating Links within articles - Joomla! Forum - community, help and support
i have added links within articles problem traditional blue in colour , underline. change them colour of choice , should not underlined , change colour when mouse brought on them. can me this. guys new joomla prefer detailed answer on how go it. can have @ site see talking http://www.cruzeiro-safaris.com
thanks in advance.
thanks in advance.
link colours template specific , can edited in template's css file(s). code such as:
or
replace word "underline" "none" , word "blue" or if hex code such #00669, replace colour name or code of choice.
code: select all
a {
color: blue; /* or hex blue code such #006699;*/
text-decoration: underline;
}
or
code: select all
#id-name li {
color: blue; /* or hex blue code such #006699;*/
text-decoration: underline;
}
replace word "underline" "none" , word "blue" or if hex code such #00669, replace colour name or code of choice.
Comments
Post a Comment