Deal Plazza Template

Hi,

I have buy the Deal Plazza for my email: This email address is being protected from spambots. You need JavaScript enabled to view it.
I want to ask you how can i use small letters in menu or in a module because everything its UPPERCASE.

Thanks
11 years 6 months ago #1 by nikos

Please Log in or Create an account to join the conversation.

Hi Nikos

For the menu item title you can change the text-transform property from this css file
/templates/deals_plazza/css/menu.css
.menusuperfish li a {
...
text-transform: uppercase;
}

For the module title you can change the text-transform property from this css file
/templates/deals_plazza/css/module.css
div.moduletable h3,
div.moduletable_menu h3,
div.moduletable_text h3,
div.moduletable-red h3,
div.moduletable-blue h3,
div.moduletable-box h3,
div.moduletable-boxred h3,
div.moduletable-boxblue h3,
div.moduletable-badgenew h3,
div.moduletable-badgehot h3{
...
text-transform: uppercase;
}
11 years 6 months ago #2 by erwinschro

Please Log in or Create an account to join the conversation.

Additionally, You also need to change the font-family from the menu.css (line 70)
.menusuperfish a {
	...
	font-family: "BebasNeueRegular",Arial, Tahoma, Verdana, sans-serif!important;
	...
}

into
.menusuperfish a {
	...
	font-family: Arial, Tahoma, Verdana, sans-serif!important;
	...
}

because the font BebasNeueRegular does have uppercase typo font only.
11 years 6 months ago #3 by andy

Please Log in or Create an account to join the conversation.

Powered by Kunena Forum