• My footer widget only allows me enough space for my address and I’d like more info in there. can’t figure out how to add to the widget – have tried adding a new text box but didn’t work.

    thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Unless you provide a link to a page demonstrating the problem, no one will be able to offer much in the way of assistance.

    Thread Starter devata

    (@devata)

    Looks like you are using a custom theme, so you will need to contact the person who created the theme for you for further support. In the meantime, try using Firefox with the Firebug add-on for this kind of CSS work.
    https://getfirebug.com/

    You will need to change the height on both of these CSS declarations — what it should be changed to depends on what you want to add:

    #footer {
        color: #FFFFFF;
        height: 175px;
        margin: 0 auto;
        padding: 0;
        width: 920px;
    }
    
    #footer-content {
        float: left;
        height: 100px;
        margin: 25px 20px 0;
        overflow: hidden;
        padding: 0;
    }

    If you are not already using it, Firebug is the best tool for figuring out CSS issues.

    Thread Starter devata

    (@devata)

    ok thanks a lot

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Footer Widget’ is closed to new replies.