2014-04-18, 08:20 AM
I want to change the font size and color of the Forum Name Link and Thread Links seperately. what would i use for css. and hover and visited and everything
(2014-04-18, 08:20 AM)tunescool Wrote: [ -> ]I want to change the font size and color of the Forum Name Link and Thread Links seperately. what would i use for css. and hover and visited and everything
.forumname a:link, .forumname a:visited
in your css. There you can style the forum name for starters. You may be able to add a new block with .forumname a:hover .forumname a:link {
font-size: 16px;
font-style: italic;
color: #000000;
text-decoration: none;
}
.forumname a:visited {
font-size: 16px;
font-style: italic;
color: #000000;
text-decoration: none;
}
.forumname a:hover, a:active {
font-size: 16px;
color: #000000;
text-decoration: underline;
}
<span class="forumname"><a href="{$forum_url}">{$forum['name']}</a></span>
}
.forumname a:link {
font-family: tahoma;
font-size: 16px;
font-weight: bold;
font-style: italic;
color: #000000;
text-decoration: none;
}
.forumname a:visited {
font-family: tahoma;
font-size: 16px;
font-weight: bold;
font-style: italic;
color: #000000;
text-decoration: none;}
.forumname a:hover, a:active {
font-family: tahoma;
font-size: 16px;
font-weight: bold;
font-style: italic;
color: #000000;
text-decoration: underline;
}
.navigation {
font-family: tahoma;
font-size: 13px;
font-weight: bold;
color: #00138E;
text-decoration: none;
}
.navigation a:link {
font-family: tahoma;
font-size: 13px;
font-weight: bold;
color: #00138E;
text-decoration: none;
}
.navigation a:visited {
font-family: tahoma;
font-size: 13px;
font-weight: bold;
color: #00138E;
text-decoration: none;
}
.navigation a:hover, .navigation a:active {
font-family: tahoma;
font-size: 13px;
font-weight: bold;
color: #00138E;
text-decoration: underline;
}
.navigation .active {
font-family: tahoma;
font-size: 13px;
font-weight: bold;
color: #00138E;
text-decoration: none;
}
<div class="forumname"><a href="{$forum_url}">{$forum['name']}</a></div>
.forumname a {
color:red;
}