PDA

View Full Version : Size of description box



Vitor Reis
February 11, 2010, 11:13 AM
Hello,

How can I control the width of deciption box?

View image to details:
http://i883.photobucket.com/albums/ac37/vitoreis/box.png

Thank you,
Vitor

Mike
February 12, 2010, 12:57 PM
Hello Vitor,

There is no ability to change width of tooltip via admin panel, you can change width in code

You need edit templates/your_template/tpl/controllers/add_listing.tpl
find code and make changes



$(this).qtip({
content: $(this).attr('tooltip'),
show: 'mouseover',
hide: 'mouseout',
position: {
corner: {
target: 'topRight',
tooltip: 'bottomLeft'
}
},
style: {
width: 150,
...


you need to change width here, also you can try to remove this line - width will be calculated automatically

Vitor Reis
February 12, 2010, 02:33 PM
Thank you Mike!