help with footer widgets

Discussion in 'Andrina WordPress Theme' started by deveshd, May 18, 2013.

Thread Status:
Not open for further replies.
  1. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    I've two question on footer widgets.

    1. How do I add some padding/ margin to the 3rd footer right so the text is not going till the edge of the site body, may be a few pixels less, same as how it starts a few pixels away from the divider?

    2. Can I move the 2nd and 3rd footer a little left because my first footer is just a link list and doesn't need as much space which can be used by testimonial text length?
    url: http://webworxworld.com/client-demo/
    Screenshot
    Screen shot 2013-05-18 at 12.41.39 AM.png
     
    lyubo likes this.
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    For your first issue, paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .widget_inner.last {
    padding-right: 30px;
    }
    you can adjust the value of padding-right as per your requirement.

    For your second issue, it is not possible to move 2nd and 3rd footer widgets to its left because it is implemented on grid system and if we try to move it left then the theme will loose the layout.
    But you can move the First Footer Widget text in the center by Pasting the following code in your Custom CSS.
    Code:
    .menu-footer-container {
    padding: 25px 60px;
    }
    you can adjust the value of padding as per your requirement.
    And if you give the heading for the First Footer Widget Area then it will looks fine.
     
  3. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    works, thanks!
     
Thread Status:
Not open for further replies.

Share This Page