How To Add Columns In Wordpress Footer

Discussion in 'WordPress' started by krreddy, Jan 30, 2013.

  1. #1
    I want to have three columns in footer to add menu and support links
     
    krreddy, Jan 30, 2013 IP
  2. GT6

    GT6 Well-Known Member

    Messages:
    106
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    110
    #2
    Can you please tell us what theme are you using ?
     
    GT6, Jan 30, 2013 IP
  3. iMarcus

    iMarcus Active Member

    Messages:
    122
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    90
    #3
    Put 3 divs in, Float them left and set width & padding in css.
    eg:
    <style>
    #columns {width:960px}
    #col {width:300px;float:left;margin-right:20px;}
    </style>
     
    <div id="columns">
    <div class="col">
    <!-- code in here-->
    </div>
    <div class="col">
    <!-- code in here-->
    </div>
    <div class="col">
    <!-- code in here-->
    </div>
    </div>
    HTML:
    This is just to give you an idea really :)
    There are plenty of tutorial around for this kind of thing.
     
    iMarcus, Feb 2, 2013 IP