• All my widgets are left justified in the sidebar and I want to keep them left justified but, when I try to center them it centers all the text. How can I center the widgets but, keep the text left justified

    #sidebar {
    width: 284px;
    float: right;
    margin: 0px 0px 0 0;
    background-color:#0F3D4C;

    I cannot change any margins or padding because it messes up the whole design.

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • link to the site inquestion will be helpfull

    Thread Starter slimdiggie

    (@slimdiggie)

    The site is on my local host. Here is a link to what I am trying to correct. I want the two bars on the right to go all the way to the bottom of the footer.

    https://img89.imageshack.us/img89/4496/imagej.png

    if possible, try putting a wrapper div after the sidebar

    <div id="sidebar">
      <div id="sidebar-wrap">
    
    ---- code     
    
      </div>
    </div>

    the #sidebar is 284 px wide
    make #sidebar-wrap 250 px wide
    and add this code to it
    margin: 0 auto;

    which will cause it to center itself within the 284 px of Sidebar. Then your widgets will display as they are now but within the 250 px band.

    Obviously you can adjust 250px to whatever you want. As long as it is less than 284 it will center itself within sidebar.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘sidebar help’ is closed to new replies.