space between text columns in documenta

elliotfreeman / 2013-07-27 12:18:59   

Hi, quick question, i'm sure there's an easy solution but i cant seem to get it to work.

I'm trying to adjust the space between the text columns on my information page

elliotfreeman.co.uk/

Any help is appreciated, thank you
Elliot

arsondpi / 2013-07-27 12:35:04   

The sizes are automatically generated.
However you can override things - check your source code or use Firebug to track down the name of each css selector for each column.
In this case I tried:

  1. #img-container .first { width: 250px !important; padding-right: 50px; }

!important overrides any other value for width and padding-right is... well, padding-right.

elliotfreeman / 2013-07-27 12:41:59   

Thanks arsondpi,

is this in /plugin/format.documenta.php ?

arsondpi / 2013-07-27 13:27:34   

Yes you can insert it in the css part of documenta.php (towards the end - there's a php line that, depending on your skills, you can have a look)

Alternatively you can insert it in your style.css

This thread has been closed, thank you.