• Hi,
    I have got the problem in the costumizr theme that i cant change the distance between the widgets in the footer. Actually I just wnt to move the widget 3 in the footer more to the right.

    I used this in css:

    .footer_three .widget {
    padding-left: 40px;
    }

    But it doesnt work.
    Thank you for help!!! Stef

Viewing 5 replies - 1 through 5 (of 5 total)
  • You need to watch out for class= .selector and id= #selector.

    Depending on what you want to right align, try these:

    footer#footer #footer_three  h3 {
    text-align: right;
    }
    footer#footer #footer_three  .textwidget {
    text-align: right;
    }

    Thread Starter rowf

    (@rowf)

    Goog Morning rdellconsulting,

    thank you for the explanation, but I cant figure it out.
    In the footer there is on the right side a jetpack picture container and a menu… and both I want to put a little bit more to the right side.

    I tried

    footer#footer #image-4 .jetpack-image-container {
    position: right;
    }

    But it doesnt do anything. Please can you hve a look at it:

    https://www.roggewf.de/Chess4kids/

    Thank you very much, Stef

    OK, try this:

    #footer_three.span4 {
      left: 200px;
      position: relative;
    }

    You need to adjust 200px to what you need.

    Thread Starter rowf

    (@rowf)

    Wow, thank you very much !!!
    Have a nice day ?? Stef

    If you’re happy, please can you update to [resolved] in right sidebar.

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Distance between widgets in footer’ is closed to new replies.