Jump to content

need to resize the texture img size of the color_picker


inovi

Recommended Posts

hello every one , i need to resize the img of the texture of the color_picker icons.
I have attach a picture for explain my problem...
I have resized the color picker size, but the picture of the texture is still small at 20pix. Can somebody heøp me for that one ??

38939_UzA6IUQruGYjgveuEuHQ_t

Link to comment
Share on other sites

i found it sorry
just need to write that in the global.css:

#primary_block a.color_pick {
display: block;
width: 100px;
height: 100px;
border: 1px solid #666;
cursor: pointer
}
#primary_block a.color_pick img
{
width:100px;
height:100px;
}

  • Like 1
Link to comment
Share on other sites

  • 4 years later...
  • 1 month later...

global.css hasn't worked for me either.

But in product.css changing the width and height of "#attributes .attribute_list #color_to_pick_list" and the other to below has.

 

  #attributes .attribute_list #color_to_pick_list {
    list-style-type: none; }
    #attributes .attribute_list #color_to_pick_list li {
      float: left;
      margin: 0 3px 3px 0;
      padding: 1px;
      border: 1px solid #d6d4d4;
      clear: none;
      width: 46px;
      height: 46px; }
      #attributes .attribute_list #color_to_pick_list li a.color_pick {
        display: block;
        height: 32px;
        width: 32px;
        cursor: pointer; }
        #attributes .attribute_list #color_to_pick_list li a.color_pick img {
          display: block;
          height: 42px;
          width: 42px; }
      #attributes .attribute_list #color_to_pick_list li.selected {
        border: 1px solid #4d4d4d; }

 

 

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