Columns

dropsy16

Junior Member
Joined
Dec 10, 2011
Messages
100
Reaction score
21
I was wondering how you format the footer to look like this?

Premium Wordpress Theme - Apollo.jpg


It's formatted so nicely. Thanks! :D
 
Probably using a table or next tables

Could be as simple as (to get you started):

Code:
<table>
   <tr><td>Row 1 - Column 1</td>
           <td>Row 1 -Coumn 2</td>
           <td>Row 1 -Column 3</td>
  </tr>
   <tr><td>Row 2 - Column 1</td>
           <td>Row 2 -Coumn 2</td>
           <td>Row 2 -Column 3</td>
  </tr>
</table>
 
Get some idea of how that type of footer is created (has both html and css examples here):
Code:
http://www.paintbits.com/wordpress/wordpress-recent-comments-without-plugin/

The above code (not complete though) creates the footer on this page, which is similar to your example:
Code:
http://www.paintbits.com/

HTH :)
 
jazzc is apsolutly right ...

open that picture in paint and draw over it :) its the best thing to visualize ..

i see 4 columns ; i would do that with 4 divs and ul li elements (just format ul li with css )

if you need an example i will gladly provide
have a nice day
Hus
 
That's probably a Wordpress theme using widget areas as the footer columns.
 
Back
Top