- Posts: 3
- Thank you received: 0
Font size
-
Tmark
Inactive member - Topic Author
- New Member
Less
More
13 years 9 months ago #6968
by Tmark
I am trying to change the font size in the main menu and the Virtuemart menu including basket which are placed under the main menu.
Furthermore in Virtuemart menu the productcategory font is bold which I would like to change in "normal". I tried some things but I did not succeed.
Where can I change the font size?
Best regards,
Tmark
Furthermore in Virtuemart menu the productcategory font is bold which I would like to change in "normal". I tried some things but I did not succeed.
Where can I change the font size?
Best regards,
Tmark
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 9 months ago #6976
by ivan.milic
Replied by ivan.milic on topic Re: Font size
Hi,
For main menu in template_css.css:
#column_right ul.menu li a:link, #column_right ul.menu li a:visited, #column_left ul.menu li a:link, #column_left ul.menu li a:visited {
font-size: 13px;
font-weight: normal;
}
a:link, a:visited {
font-weight: bold;
text-decoration: none;
}
For vm menu use:
#product_list a
{
font-size: 13px!important;
}
Menu title:
/components/com_virtuemart/fetchscript.php
element.style {
}
Matched CSS Rules
#vmMainPage h3 {
font-size: 32px;
text-transform: uppercase;
font-family: 'GeosansLightRegular', Arial, Helvetica, sans-serif;
font-weight: normal;
}
For main menu in template_css.css:
#column_right ul.menu li a:link, #column_right ul.menu li a:visited, #column_left ul.menu li a:link, #column_left ul.menu li a:visited {
font-size: 13px;
font-weight: normal;
}
a:link, a:visited {
font-weight: bold;
text-decoration: none;
}
For vm menu use:
#product_list a
{
font-size: 13px!important;
}
Menu title:
/components/com_virtuemart/fetchscript.php
element.style {
}
Matched CSS Rules
#vmMainPage h3 {
font-size: 32px;
text-transform: uppercase;
font-family: 'GeosansLightRegular', Arial, Helvetica, sans-serif;
font-weight: normal;
}
Please Log in to join the conversation.
Time to create page: 0.139 seconds