Page 1 of 1

Re: How to change the font size and type in the daily menu title

Posted: 17 Jul 2009, 09:40
by willson
In a custom CSS file put something like (this is an example for the header above the menu):

Code: Select all

#phocamenu .pm-header {
font-family: Corbel,Geneva,"Lucida Sans Unicode","Lucida Sans","DejaVu Sans","Bitstream Vera Sans","Liberation Sans",Verdana,Tahoma,"Trebuchet MS",sans-serif;
font-size: 120%;
font-weight: bolder;
}
Almost all the tags of the menus have classes so that you can easily manipulate the styles presented to the user.

The class for the menu items themselves is pm-title so you would use

Code: Select all

#phocamenu .pm-item table tr td.pmtitle, #phocamenu .pm-item-bl table tr td.pmtitle { ... }