ZenphotoCMS Forum
Adding an extra colum - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: Adding an extra colum (/thread-2569.html)



Adding an extra colum - begin22 - 29-03-2008

Hey,

I would like to add a fourth column so my page fills up a little more:
http://yellowbirdproject.com/gallery/index.php?album=YBP+Shirts

How would I go about accomplishing that?




Adding an extra colum - olihar - 29-03-2008

Hi you could do that one way.

Change this.

`

main {


background:#FFF;

float:left;

width:500px;

font:Georgia, "Times New Roman", Times, serif;

font-size:14px;

padding-left:10px;

}

`

to this

`

main {


background:#FFF;

float:left;

width:600px;

font:Georgia, "Times New Roman", Times, serif;

font-size:14px;

padding-left:10px;

}

`

in your index.css file.
`

http://www.yellowbirdproject.com/index.css

`

just play around with "width:XXXpx;" in the CSS.