• Resolved ollyc2016

    (@ollyc2016)


    I am trying to add a footer widget to my page and I have managed to do that fine however I am getting a white box around the text and I don’t want that to happen. I want the text to simply blend in with the background colour.

    I tried to find out how to solve this and when I went into the developer tools and removed the class widget widget-box widget_nav_menu this resolved the issue. I thought I could just go into the FTP and delete this class to get rid of the unwanted CSS or whatever is making it do that but I cannot find it.

    Could you give me some advice on how to solve this, its driving me crazy. In case the above isn’t clear here is a link to my site http://www.fast-protein.com

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter ollyc2016

    (@ollyc2016)

    If anyone can help with this I would appreciate it

    Thread Starter ollyc2016

    (@ollyc2016)

    I believe this is the path to the class I want to edit but whatever I do doesn’t resolve the issue;

    .footer-widget-area .container .row .col-md-3 col-md-6 #nav_menu-12 .widget widget-box widget_nav_menu {
    background-color: none !important;
    }

    Theme Author MageeWP

    (@magictheme)

    Hi ollyc2016,

    Please use the following css code

    .footer-widget-area .widget_nav_menu{
        border-top: none;
    }
    .footer-widget-area .widget_nav_menu li{
    border-bottom: 1px solid rgba(255,255,255,.1);
    }
    
    .footer-widget-area .widget_nav_menu li a{
    background-color:transparent;
    border:none;
    }
    Thread Starter ollyc2016

    (@ollyc2016)

    Thanks that works!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘White box around footer widget’ is closed to new replies.