Don't use font sizes specified in "large / medium / small"
There is too much variation between the browsers there, as they're implemented differently - which you're witnessing.
<p><span style="color:#ffffff;font-size:medium;">
Try using a font size set to px instead
<p><span style="color:#ffffff;font-size:13px;">
If you really wanted to get into it, you could define a class your CSS and set the span style to it, or you could think about using some of the built in typography of the Zephyr template.
Hi Mark!
Thank you for the tip on font size that does work well... I actually used an h3 header which is perfect...
I think we used to be able to use CSS to define the color of all h1-6 headers... but with these new templates I'm having trouble finding a place to define the color separate from the general font color... any thoughts?
It's still not showing white in Safari...
I'd love to define a CSS class/span... could you give me some pointers on how to do that?
You have the H3's contained in a SPAN with the color set to white. Which I'm guessing Safari is ignoring.
If you want to edit the H3, in the gantry.css, at 51, you'll see all the H tags grouped together.
You'll want to copy out the h3
Change this
h1, h2, h3, h4, h5 {
}
to:
h1, h2, h4, h5 {
}
Then at line 54,
add the line height and margin back to the h3.
you can also set the color there.
If you'd like to create a custom class, edit your template.css. Hop to the end of the file, and insert this:
.PageTitle {
font-size: 175%
color: #fff;
}
Save and upload.
Then in the module where you have the contact info
<div class="PageTitle">Contact Uptown Living Dallas<br/>
Jennifer Nix | Broker<br/> This email address is being protected from spambots. You need JavaScript enabled to view it.<br/>
214 212 7655<br/>
</div>