PDA

View Full Version : Height of the box of each listing



rosegarden
September 5, 2012, 10:20 PM
How can I increase the default height of the box of each listing box?

I like to stretch a little taller as it is covering my text

rosegarden
September 5, 2012, 11:58 PM
To be more specific, my listing show the following

Title heading
Field #1
Field #2
Category

My field #2 is partially hidden at times when the title is long. I want to increase the height slightly so that it will not be hidden

Vladimir
September 6, 2012, 03:30 AM
Hello,

You can try fix it the following way:

- open file: templates/your_template/css/style.css
- find this code (line ~ 700):



div#listings div.item td.fields {
display: block;
max-height: 104px;
overflow: hidden;
}


and change it to:



div#listings div.item td.fields {
display: block;
max-height: 115px;
overflow: hidden;
}

rosegarden
September 7, 2012, 12:45 AM
Hi there
Thanks :)