Deal Plazza Template
- Posted by nikos (1) Offline
				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
						
								12 years 4 months ago								#1
				by nikos
			
		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
Please Log in or Create an account to join the conversation.
- Posted by erwinschro (1034) Offline
				Hi Nikos
For the menu item title you can change the text-transform property from this css file
/templates/deals_plazza/css/menu.css
For the module title you can change the text-transform property from this css file
/templates/deals_plazza/css/module.css
			
						
								12 years 4 months ago								#2
				by erwinschro
			
		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;
}Please Log in or Create an account to join the conversation.
- Posted by andy (759) Offline
				Additionally, You also need to change the font-family from the menu.css (line 70)
into
because the font BebasNeueRegular does have uppercase typo font only.
						
								12 years 4 months ago								#3
				by andy
			
		.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.
Please Log in or Create an account to join the conversation.