Jump to content

Change product data sheet font


Guest

Recommended Posts

Hi all

Does 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? Thanks

J

Link to comment
Share on other sites

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

  • 1 month later...
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

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...