• Hello there,

    I’m a newbie on www.ads-software.com from the Netherlands and I’d have to admit I think CSS is very difficult!

    hopefully there is someone who could help me with the following problem:

    How do I get rid of the full page border? I’ve tried so many things, but nothing is working.
    I have a custom CSS plug-in, which I use to put my CSS in.

    Kind regards,
    Aysa

    https://paradays.nl

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,
    I have the same question. Did u manage to resolve yours? My website is https://www.poojascookery.com and I want to get rid of the full border around the pages along with those tiny ribbon like things.

    To remove the borders, add these two rules to your custom CSS:

    #page:before, #page:after {
       display: none;
    }
    
    #header, #main {
       background-image: none;
    }

    Pooja, if you also want to get rid of the ribbons on the sides of the menu, add this rule to your child theme’s style.css file:

    #nav-wrapper .ribbon-left, #nav-wrapper .ribbon-right {
        display: none;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to get rid of full page border.’ is closed to new replies.