it can't refresh the new font size

it can't refresh the new font size

por angela hdez -
Número de respuestas: 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..;)

Promedio de valuaciones (ratings): -
En respuesta a angela hdez

Re: it can't refresh the new font size

por Helen Foster -
Imagen de Core developers Imagen de Documentation writers Imagen de Moodle HQ Imagen de Particularly helpful Moodlers Imagen de Plugin developers Imagen de Testers Imagen de 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)