• Resolved sallam

    (@sallam)


    Hi everyone!

    I need to remove the grey borders surrounding the pages, from top, bottom, left and right, so that all the blog becomes all white. How can I do that please?

Viewing 10 replies - 1 through 10 (of 10 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have a section of the dashboard named, “Custom CSS” or “Edit CSS”?

    Thread Starter sallam

    (@sallam)

    I have “editor” under “Themes”, where I can edit the stylesheet files..

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Install this Custom CSS Manager plugin and use its section of the dashboard to hold this CSS:

    #page {
     -webkit-box-shadow: none;
     -moz-box-shadow: none;
     box-shadow: none;
    }

    Edit: Links amended.

    Thread Starter sallam

    (@sallam)

    Many thanks, but…
    I’ve installed and enabled the plugin, and added your code. But nothing happened, the borders are still there.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    We cannot see your issue.

    Thread Starter sallam

    (@sallam)

    here is my blog:
    http://my2cents.gawaher.com/

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Add this code:

    body {
     background: white;
    }

    Thread Starter sallam

    (@sallam)

    Great, it worked! thanks very much.
    Now can you please show me how to also remove the thin black line surrounding the header area?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Add

    #header {
     border: 0;
    }

    Thread Starter sallam

    (@sallam)

    Thank you so very much. That is exactly what I wanted.
    I cannot thank you enough for your prompt help.

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

The topic ‘Removing gray borders’ is closed to new replies.