• Resolved wildbug

    (@wildbug)


    I can’t figure out how to put a space to separate the left column from the right (in the same way each subcategory is separated from the one below it). here’s a sample layout

    Anyone know how to do this? I just need like 10px…

Viewing 3 replies - 1 through 3 (of 3 total)
  • I think this will do it;

    #content .categorymain {
    float:left;
    width:360px;
    }

    #content .categorymainright {
    float:right;
    width:360px;
    }

    #content .categorymain .boxmain h2 {
    background-repeat: repeat-x;
    background-position: 0 0;
    background-color: #75B93C;
    width: 350px;

    #content .categorymainright .boxmain h2 {
    background-repeat: repeat-x;
    background-position: 0 0;
    background-color: #75B93C;
    width: 350px;

    Make a backup of your style sheet first, just in case, then test it out in other browsers.

    Thread Starter wildbug

    (@wildbug)

    That did the trick. Although a simple fix if one knows CSS, as a newbie it was hard for me to figure out. I really appreciate that you took the time to help me out, made a big difference in my layout!!

    No problem at all. Truth be told, I’m just hack myself. I’m glad it worked.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘how to put space in between two columns’ is closed to new replies.