Guest Posted June 2, 2010 Share Posted June 2, 2010 Hi allDoes anyone know how to change the font/font-size of the data sheet for a product.I can change the font in the description easily, used FireBug to fing the lines to change.But for the data sheet I just can't find the line to change.Can anyone help? ThanksJ Link to comment Share on other sites More sharing options...
rocky Posted June 3, 2010 Share Posted June 3, 2010 The data sheet content inherits its style from the ul.idTabs block in /* Tabs */ section of global.css. You can modify it to change the style of all tabs, or add a ul#idTab2 block to specifically style only the data sheet content. Link to comment Share on other sites More sharing options...
Konabella Posted July 30, 2010 Share Posted July 30, 2010 The data sheet content inherits its style from the ul.idTabs block in /* Tabs */ section of global.css. You can modify it to change the style of all tabs, or add a ul#idTab2 block to specifically style only the data sheet content. I want to do the same! Not sure what line to change any other tips you can provide? Link to comment Share on other sites More sharing options...
rocky Posted July 30, 2010 Share Posted July 30, 2010 The the following code on line 109 of css/global.css in the default PrestaShop v1.3.1 theme that controls the font and colour of the short tabs like "More info" when they are not selected: ul.idTabs li a { background-image: url('../img/tab_bg.jpg'); display: block; width: 173px; height: 18px; text-align: center; text-decoration: none; text-transform: uppercase; font-weight: bold; padding-top: 3px; color: #374853 } and the following on line 131 when the short tab is selected: ul.idTabs li a.selected { background-image: url('../img/tab_bg_selected.jpg'); color: white } and the following on line 137 for the long tabs like "Customize": ul.idTabsShort li a { background-image: url('../img/tab_bg_short.jpg'); width: 138px } ul.idTabsShort li a.selected { background-image: url('../img/tab_bg_selected_short.jpg'); color: white } Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now