benopeth
02-10-2009, 06:55 AM
I have hit a brick wall in terms of how to rectify this issue. Here is my HTML...
<p class = "location">You are Here > <a href = "index.html">Home</a></p>
and here is the CSS...
p.location
{
font-size: 0.9em;
color: #ffffff;
}
p.location a:link
{
font-size: 1em;
color: #ffffff;
text-decoration: underline;
}
p.location a:hover
{
font-size: 1em;
color: #3d2446;
text-decoration: none;
background-color: #ffffff;
}
p.location a:visited
{
font-size: 1em;
color: #ffffff;
text-decoration: underline;
}
I have added breadcrumbs to my page and basically, the breadcrumb link appears a size smaller than the 'You are Here' text. I've tried everything in terms of text size adjustments but I just cannot get around it.
Can anyone suggest why I might be having this problem?
It looks like this... "You are Here > Home".
Thanks for all help/suggestions, greatly appreciated as always.
<p class = "location">You are Here > <a href = "index.html">Home</a></p>
and here is the CSS...
p.location
{
font-size: 0.9em;
color: #ffffff;
}
p.location a:link
{
font-size: 1em;
color: #ffffff;
text-decoration: underline;
}
p.location a:hover
{
font-size: 1em;
color: #3d2446;
text-decoration: none;
background-color: #ffffff;
}
p.location a:visited
{
font-size: 1em;
color: #ffffff;
text-decoration: underline;
}
I have added breadcrumbs to my page and basically, the breadcrumb link appears a size smaller than the 'You are Here' text. I've tried everything in terms of text size adjustments but I just cannot get around it.
Can anyone suggest why I might be having this problem?
It looks like this... "You are Here > Home".
Thanks for all help/suggestions, greatly appreciated as always.