• Hi there…

    I’m fairly new to CSS and I’ve been working with the Clean Home theme 1.2.0. I was wondering if anyone could point out how to remove the dotted borders around everything, esp. the sections on the right bar.

    If anyone knows how to take out the squares before the links on the right as well as removing the color change on rollover that would be great.

    Here’s my site as it is now: http://www.ohhishop.com

    thanks so much for any tips!

Viewing 4 replies - 1 through 4 (of 4 total)
  • style.css

    near line 48 looks like:

    #header {
    background-image:url("http://ohhishop.com/images/ohhibanner_1.jpg");
    border-bottom:1px dotted #CCCCCC;
    float:left;
    height:300px;
    margin:0;
    width:905px;
    }

    remove this line: border-bottom:1px dotted #CCCCCC;

    near line 116, it looks like:

    #content {
    border-right:1px dotted #CCCCCC;
    float:left;
    min-height:420px;
    padding:0 0 30px;
    width:620px;
    }

    remove this line: border-right:1px dotted #CCCCCC;

    near line 340, this section:

    sidebar .block li a {
    background:url("images/bullet_black.gif") no-repeat scroll 6px 0 transparent;
    border-bottom:medium none;
    display:block;
    font-size:13px;
    font-weight:normal;
    padding:2px 0 2px 15px;
    }

    remove this line:
    background:url("images/bullet_black.gif") no-repeat scroll 6px 0 transparent;

    below that, in #sidebar .block li a:hover
    remove this line:
    background:url("images/bullet_red.gif") no-repeat scroll 6px 52% #F7F7F7;

    Instead of removing the lines, you could comment them out in case you want to add things back to how they were. It would look like this:
    `/* border-bottom:1px dotted #CCCCCC; */

    TaaDaa! 🙂

    Thread Starter ohhishop

    (@ohhishop)

    thanks for the help! Clearly I’m very new at this but I’m slowly but surely getting the hang of it.

    Thread Starter ohhishop

    (@ohhishop)

    Oh, i went through and did what I could for now but I’ll go back and tweak a bit more.

    @ohhishop,
    Love, Love, LOVE your blog! 😉 Just wanted to let you know. I like the clean, simple layout and designs. And I love the content. Keep up the great work!

    Becky
    Bubble Gum Designs

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Clean Home theme – removing dotted borders from CSS’ is closed to new replies.