I've added the class .entrytitlelink
CODE
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 1.2em;
color: #333333;
background-color: #CCCCCC;
background-image: url(http://www.spyderfcs.com/layouttesting/BodyBackground.gif);
background-repeat: repeat-y;
background-position: 50% 0px;
text-align: center;
margin: 0px;
padding: 0px;
}
/*-------TEXT---------*/
a:link {
color: #666;
}
a:visited {
color: #333;
}
a:hover {
color: #ccc;
}
p {
margin: 1em 0 1em;
padding: 0;
}
h1 {
font-family: "lucida grande", verdana, sans-serif;
font-size: 115%;
font-weight: bold;
color: #c63;
padding: 0;
margin: 0;
}
h2 {
font-family: "lucida grande", verdana, sans-serif;
font-size: 110%;
color: #FF582E;
padding: 0;
margin: 0 0 1em 0;
}
h2 a:link, h2 a:visited {
text-decoration: none;
color: #c63;
}
h2 a:hover {
color: #930;
text-decoration: none;
}
.entrytitlelink {
font-family: "lucida grande", verdana, sans-serif;
font-size: 110%;
color: #FF582E;
padding: 0;
margin: 0 0 1em 0;
}
.entrytitlelink a:link, h2 a:visited {
text-decoration: none;
color: #FF582E;
}
.entrytitlelink a:hover {
color: #FF582E;
text-decoration: none;
}
So you would use that like this
CODE
<div class="entrytitlelink"><MTEntryTitle></div>
or
<p class="entrytitlelink"><MTEntryTitle></p>
in your template.
If you only use the h2 tag for your titles, you could just as well skip the new class .entrytitlelink and change the behaviour of the h2 links like this:
CODE
h2 {
font-family: "lucida grande", verdana, sans-serif;
font-size: 110%;
color: #FF582E;
padding: 0;
margin: 0 0 1em 0;
}
h2 a:link, h2 a:visited {
text-decoration: none;
color: #FF582E;
}
h2 a:hover {
color: #FF582E;
text-decoration: none;
}
that will make that it *is* a link but the colour doesn't change so it looks like normal text.
Whoops...we crossposted or something :-)
Went to your site and saw you went to Georgia Univ :-) I love Georgia, have family and friends there, I am from The Netherlands myself.
Usually people are quiet fast helping newbies out here at the support forum.