Set up a custom menu to change those links –
http://codex.ww.wp.xz.cn/WordPress_Menu_User_Guide
Change font size in header by ADDING this to the custom CSS under Theme Options and changing the font size:
.site-header hgroup .site-title {
font-size: 24px;
font-size: 2.4rem;
}
For the site description:
.site-header hgroup .site-description {
font-size: 14px;
font-size: 1.4rem;
}
The px is a fall-back for browsers that don’t support rem.
I just read that carefully. I guess in the five years I was away they changed how fonts are called up. What does rem stand for? Px was pixels …
Oy vey!! Thank you. So px is still usable for website browsers on regular computers, rem for mobile devices. Recommendation is to use both.
<font size="12px">
<font size="1.2rem">
Right? If so, how do you determine the rem ? Is there a site that computes the numbers for rem comparable to px?
(have other coding changes been made during the past five years? HTML coding, I mean)
I found an REM calculator 🙂