Jump to content

changing the width of the product comments.


Recommended Posts

two possible solutions

 

1

file:http://lovelyinnstor.../css/alysum.css

#fancybox-content {
width: 450px !important;
height: auto !important;
}

 

you can change the width of the fancybox (increase width param to 550px)

 

 

2

you can change the width (decrease value of it) in the .css

 

#new_comment_form input {
padding: 0 5px;
height: 28px;
width: 540px;
border: 1px solid #ccc;
background: #fff;
}

 

#new_comment_form textarea {
padding: 0 5px;
height: 80px;
width: 540px;
border: 1px solid #ccc;
background: #fff;
}

 

i don't know in which files because you use CCC (and css files are minified to one)

Link to comment
Share on other sites

×
×
  • Create New...