Change Menu Color and resize font for hyperlink - Joomla! Forum - community, help and support
hi,
i seem having issues couple basic things.
i can't seem change font size hyper link.
i changed font size text, when gets hyper link, goes font size 10.
any ideas on why is?
also, how go changing font color on left menu??
the website http://www.intelliview.ca/
any advice awesome.
thanks
i seem having issues couple basic things.
i can't seem change font size hyper link.
i changed font size text, when gets hyper link, goes font size 10.
any ideas on why is?
also, how go changing font color on left menu??
the website http://www.intelliview.ca/
any advice awesome.
thanks
you need basic understanding html, http://www.w3schools.com place start.
your text has fontsize of 12pt , link has fontsize of 12px not same. change in templates/intelliviewbasedonthemza_j15_11/css/red.css
change font color left menu red in templates/intelliviewbasedonthemza_j15_11/css/template.css:
your text has fontsize of 12pt , link has fontsize of 12px not same. change in templates/intelliviewbasedonthemza_j15_11/css/red.css
code: select all
a:link, a:visited {
font-size: 12pt;
text-decoration: underline;
}
a:hover {
color: #b70000;
font-size: 12pt;
text-decoration: none;
}change font color left menu red in templates/intelliviewbasedonthemza_j15_11/css/template.css:
code: select all
#mainlevel li a:link, #mainlevel li a:hover {
background: url("http://www.intelliview.ca/images/menu8.gif") repeat scroll 0 -32px transparent;
color: #b70000;
padding: 8px 0 0 32px;
}
Comments
Post a Comment