Center Footer Sidebar (and change width of sidebar)

  • Unknown's avatar

    Howdy y’all!

    Does anyone know how to center the footer to the middle of the site? Mine is currently aligned to the left. I’d also like my images/text in the sidebar to be centered. AND… I was going to try and make the sidebar a little smaller. Anyone know the CSS needed to make these things happen?

    Thanks!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, for the footer, are you talking about the tag cloud widget? If so, the following custom CSS will center it. Do keep in mind that you will not be able to add any other widgets to the footer widget area without removing this code from your custom CSS.

    #tag_cloud-3 {
      float: none;
      margin-left: auto;
      margin-right: auto;
    }

    On the images in the image widgets, add the following to your custom CSS to center the images.

    .widget_media_image img {
      margin-left: auto;
      margin-right: auto;
      display: block;
    }
  • Unknown's avatar

    Thank you SO much! Both of these did the job perfectly. I appreciate it!

  • Unknown's avatar

    Oh dear – I entered this CSS and now my blog’s server isn’t responding! Did I do something wrong? My blog is completely down.

  • Unknown's avatar

    I’m seeing your site just fine, and no, adding custom CSS cannot cause that issue. I expect is was a temporary server glitch.

  • The topic ‘Center Footer Sidebar (and change width of sidebar)’ is closed to new replies.