Thanks Charles!
I'll check it out. (The code you mention makes sense to me -- I just couldn't figure out what was overriding my changes.)
*** UPDATE ***
You were right about the section of the style.css file controlling that element -- and in fact the text size for
both headlineleft and headlineright. I first changed the 18px value for headline.a, and that changed the size of both hyperlinks in the headline (on the right and left). Then I went back to the 18px value and added a new font-size line to headlineright, and that worked: the right headline changed, the left headline stayed at 18 px.
To be absolutely sure that each part of headline got their own font-size value, however, I remmed out the original 18px count and added a font-size attribute to each element, as follows (other values edited out for clarity):
Quote:
.headline a, .headline a:visited {
/* font-size: 18px; */ /* commented out to allow changes below in headlineleft and headlineright */
}
.headlineleft {
font-size: 18px; /* added to separate font size of left and right header elements */
}
.headlineright {
font-size: 13px; /* added to separate font size of left and right header elements */
}
|
It works, I can tweak it at will, and so I thank you again!