• Resolved fprotani

    (@fprotani)


    Hi, I’m working on my website:
    http://www.protaniviolins.com
    I’m trying to remove the border around the three home widgets on the homepage.
    I can make it disappear from chrome inspection tool by just typing the value ‘0’ but when I copy the command to the stylesheet editor it doesn’t retain the new value.
    What am I doing wrong?

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Marco Chiesi

    (@marcochiesi)

    This request has nothing to do with our plugin, it’s just a css issue.
    To remove the border edit your theme’s style.css file (located at /wp-content/themes/responsive/style.css), around line 957, and change:
    border: 1px solid #e5e5e5;
    to
    border: none;

    Thread Starter fprotani

    (@fprotani)

    Thanks for your help Marco and sorry for opening this thread in the wrong place. I’ve tried to place the command you’re suggesting in the child theme’s css editor but it isn’t working.

    Plugin Author Marco Chiesi

    (@marcochiesi)

    You have an error in your inline css. There’s a missing closing } in this snippet:

    /* ELIMINATO SUB HEADER MENU */
    
    .sub-header-menu, .sub-header-menu ul {
    display: none;

    which causes the subsequent rules to be not applied.

    Thread Starter fprotani

    (@fprotani)

    It worked a treat! Thanks so much

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

The topic ‘Removing border to widgets’ is closed to new replies.