As much I konw about css , something can't figure out How to make this in column ? Two columns ... I was trying to find some solution on others templates but no one make something like this I was thinking to use id class in css but that will make big problem in template ... any better solution/answer ? I will be greatful if some show me how make this in css ( in codes ) Thanks
A lot of other people here also use templates. The templates are very very hard to change, because they have way too much code. They're hard to even read. Sometimes it's easier to scrap it and start fresh. : ( For two columns, it depends on where they are. Do you have just one page with two big columns? Or are these columns sitting somewhere on the page while other stuff is also on the page?
Being those look like a list to me, I would format them as a list <ul id="topiclist"> <li>evil humor</li> <li>clumsy crooks</li> etc, etc, etc. Then you set in your css: #topiclist { width:500px; margin:0 auto; padding:0; list-style:none; overflow:auto; } #topiclist li { width:50%; margin:0; padding:0; float:left; } With each LI at 50% width, your flat list auto-formats to two columns thanks to the float.