• Hi.

    I can’t figure out how to remove the borders around the images in my left-menu sidebar.

    I use the oh so very theme at my site: https://watchmecreate.com

    Can anyone help? Is there any code I can cut and paste for you to see that would be helpful?

    Thanks in advance.

    Lori G.

Viewing 1 replies (of 1 total)
  • Hi

    Find the section in your theme file where entries start with

    #left-menu {whatever…. }

    add this in that section, in between (like this

    currently

    #left-menu ul {
    margin:0px;
    padding:0px;
    }
    
    #left-menu li {
    background:#FFFFFF none repeat scroll 0%;
    color:#808080;
    list-style-type:none;
    margin-left:8px;
    padding:0pt 0pt 2px;
    }

    after the change

    #left-menu ul {
    margin:0px;
    padding:0px;
    }
    
    #left-menu img { border: 0; }
    
    #left-menu li {
    background:#FFFFFF none repeat scroll 0%;
    color:#808080;
    list-style-type:none;
    margin-left:8px;
    padding:0pt 0pt 2px;
    }

    that should do it

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Border from left-menu Images (oh so very)’ is closed to new replies.