it can't refresh the new font size

it can't refresh the new font size

by angela hdez -
Number of replies: 1

Hi!

I have a problem when I changed the font-size for the logininfo:

.logininfo,
#header-home .headermenu font {
     font-size:.8em;
}

 in the directory

/home/htdocs/moodle/theme/formal_white/fw_fonts.css

then I save the changes and refresh the page and don´t appear the new font size..

please, what I do?

thanks, bye

Angela.

PD:excuse me, for my poor english..;)

Average of ratings: -
In reply to angela hdez

Re: it can't refresh the new font size

by Helen Foster -
Picture of Core developers Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers Picture of Translators

Hi Angela,

There doesn't appear to be a font tag in the headermenu div, so

#header-home .headermenu font

should just be

#header-home .headermenu

Also, you probably don't want to apply the font size on both .logininfo and #header-home .headermenu

Just using

#header-home .headermenu  {
font-size: 0.8em;
}

should do what you're looking for (although you might want to use a bigger value than .8em - the text will be very small! wide eyes)