Jump to content

[Solved] Where Is The Css For The Class Customization_Block Located? (Prestashopnew Theme))


Recommended Posts

I need to make some changes to the css for the product customization.

The class for the container it's in is called "customization_block". According to the element inspector in Chrome, it's located in Global.css however PrestashopNew's global css doesn't have it. The original prestashop theme global.css has it but when I try to make a change to that, it does not do anything which isn't surprising since I'm using the "NEW" theme and not the original theme.

 

v1.4.5

Driving me crazy. I've looked everywhere and can't find it. please help!

Link to comment
Share on other sites

Hello,

 

as a matter of fact in the default themes it's in global.css file but it just doesn't exist in the "new theme".

So, you just have to add in themes/YOUR_THEME/global.css the class customization_block and customize it as you want.

 

You can copy the css of that block "customization_block" from themes/prestashop/css:global.css line 1346 :

/* Customizable product */
#customization_block { width: 556px }
.customization_block_title { margin: 4px 4px 4px 2px }
#customization_block ul { margin: 6px 6px 0 6px }
.customization_block_input { vertical-align: inherit }
img.customization_delete_icon { margin: 2px }
li.customizationUploadLine {
text-align: right;
margin-right: 40px;
clear: left;
padding: 4px;
display: block
}
div.customizationUploadBrowse { float: left }
div.customizationUploadBrowseDescription { padding: 6px }
img.customizationUploaded {
margin: 2px;
border: 1px solid #888888
}
ul.customizationUploaded {
list-style-type: none;
margin-left: 4px
}
ul.customizationUploaded li { display: inline }
ul.customizationUploaded a { text-decoration: none }
div.customizationUploaded { clear: left }
div.deletePictureUploaded { float: right }
div.deleteCustomizableProduct { float: right }
ul.typedText {
padding-left: 6px;
list-style-type: none
}

 

in the global.css file of the new ttheme and modify it.

 

Regards.

 

daYmo

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...