PDA

View Full Version : how do I.....



Marc Austin
July 17, 2013, 02:38 PM
I need to make the box that displays the plans larger.... much of the text I have describing the plans is being cut short. (see attachment)

How do I do that?

I searched for "tile" expecting it to be a css issue, but can not find it.

Thanks.
575

Viktor
July 18, 2013, 05:57 AM
Hello Marc,

I don't know what template do you use and cannot say you exactly line but you can find it in css: ftp://templates>>your_template>>css>>styles.css


table.plans td.info div.desc {
color: #373737;
height: 30px;
line-height: 17px;
overflow: hidden;
padding: 3px 0 5px 7px;
}


change 'height' or remove 'overflow: hidden;'
and it should show descriptions.

Marc Austin
July 18, 2013, 04:47 PM
well duh! :p

I also had to remove the overflow:hidden; declaration.

Thanks Viktor!