Hi
Could someone take a look at <!-- m --><a class="postlink" href="http://dmumford.bizhat.com/rca/">http://dmumford.bizhat.com/rca/</a><!-- m -->
You will see the 2nd paragraph down on the right hand side a link Lorem ipsum
The size is not being picked I think it is an inheritance issue but I am not sure how to solve it any ideas?how about take out the '0.7em' in
/* -------------------------------------------------------------------
L I N K S
---------------------------------------------------------------------- */
a{
font: bold 0.7em Verdana, Arial, Helvetica, sans-serif;
}You should simply re-define the size for your link.
Under LINKS in your stylesheet, your link size is 0.7 em
Change it to a higher number, such as 1 em and see the difference.
if i do either of those it will alter the links else where I think my problem may have something to do with the fact that the link is within a <p> tag, but I don't know how to overcome thishow about adding
#pagetitlehome a {
font-size: 1.2em;
}
to your stylesheet. Then mess with the 1.2 to get it to what you want.that worked but I am not sure i have gone about setting up my stylesheet in the right way.Just for those inividual links you want to appear large, like your Lorem Ipsum...
keep your a at 0.7 ems
add the following to your css stylesheet
.largelink { font-size: 1em}
and edit your link tag accordingly:
<a href=http://www.webdeveloper.com/forum/archive/index.php/".htm" class="largelink">Lorem ipsum</a>the thing is say i wanted too add <ul> as i have already set up a class called <ul class="nav"> the same thing will happen againwell apply those side styles using
#nav a
not
ul a
So long as you refer to them using classes or ids you wont have any trouble.That's right. You cannot have a class inside the class inside the ID.
Take the class off the <ul> and have individual <li> tags classified, in a manner of
<li class="smallfont"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">link</a></li>
<li class="largefont"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">link</a></li>
<li class="smallfont"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">link</a></li>
<li class="smallfont"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">link</a></li>
Could someone take a look at <!-- m --><a class="postlink" href="http://dmumford.bizhat.com/rca/">http://dmumford.bizhat.com/rca/</a><!-- m -->
You will see the 2nd paragraph down on the right hand side a link Lorem ipsum
The size is not being picked I think it is an inheritance issue but I am not sure how to solve it any ideas?how about take out the '0.7em' in
/* -------------------------------------------------------------------
L I N K S
---------------------------------------------------------------------- */
a{
font: bold 0.7em Verdana, Arial, Helvetica, sans-serif;
}You should simply re-define the size for your link.
Under LINKS in your stylesheet, your link size is 0.7 em
Change it to a higher number, such as 1 em and see the difference.
if i do either of those it will alter the links else where I think my problem may have something to do with the fact that the link is within a <p> tag, but I don't know how to overcome thishow about adding
#pagetitlehome a {
font-size: 1.2em;
}
to your stylesheet. Then mess with the 1.2 to get it to what you want.that worked but I am not sure i have gone about setting up my stylesheet in the right way.Just for those inividual links you want to appear large, like your Lorem Ipsum...
keep your a at 0.7 ems
add the following to your css stylesheet
.largelink { font-size: 1em}
and edit your link tag accordingly:
<a href=http://www.webdeveloper.com/forum/archive/index.php/".htm" class="largelink">Lorem ipsum</a>the thing is say i wanted too add <ul> as i have already set up a class called <ul class="nav"> the same thing will happen againwell apply those side styles using
#nav a
not
ul a
So long as you refer to them using classes or ids you wont have any trouble.That's right. You cannot have a class inside the class inside the ID.
Take the class off the <ul> and have individual <li> tags classified, in a manner of
<li class="smallfont"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">link</a></li>
<li class="largefont"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">link</a></li>
<li class="smallfont"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">link</a></li>
<li class="smallfont"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">link</a></li>