Hi Rick,
I'll handle the css question in this thread as it's the original theme thread; however, we'd appreciate it if you would start separate issues off in their own thread from now on.
The font size is set in styles/common.css, and then reset in plugins/themes/classicNavy/classicNavy.css. You can make changes one of two ways: directly to the classicNavy.css file, or into a new custom css file that you can then upload in Journal Setup Step 5. The advantage of doing this in a custom css file is that you won't have to worry about future upgrades wiping out your changes (although due to core css changes, you may still have to rework any modified styles).
To take the header's title as an example for modification: I would normally check first to see how it's defined in common.css, and then whether that style definition is overwritten by classicNavy.css. In this case it is -- you'll find the following in classicNavy.css:
- Code: Select all
#header h1 {
line-height: 2.5;
font-family: "Times New Roman", Times, Georgia, serif;
text-transform: uppercase;
letter-spacing: 10px;
font-size: 2em;
background-color: #007;
color: #fff;
}
That code chunk is basically saying that all h1 elements within the header div should have a distance of 2.5 of the current font size between lines; should render in Times New Roman, or Times, Georgia, or serif if TNR is not present; should be displayed in upper case; should have 10px spacing between letters; should be 2em font-size; and should follow the corresponding colour rules. The best thing to do is just start experimenting with these values until you get something you like. You'll have to find each type of text in common.css, and then again in classicNavy.css, but once you look up one or two you should get the hang of it.
Cheers,
James