Remove border

Home Forums Automattic Elemin Remove border

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #107850 Resolve

    societysocial
    Member

    Hi,

    I would like to remove the grey border around my blog
    http://societysocial.wordpress.com/

    I would also like to make the line above my pages (home, about, contact) black, like the line below.

    Can you please advise ccs options.

    The blog I need help with is societysocial.wordpress.com
    #138193

    Michelle

    To remove the grey border, try this CSS:

    #page {
    border-width: 0;
    }

    To make the line above your menu black, this CSS should do the trick!

    #access {
    border-top: 1px solid #000000;
    }

    If you want the adjust the border thickness, change the “1px” to a higher number that suits you.

    Hope this helps! Let me know if you have any other questions.

    #138262

    societysocial
    Member

    Thank you!

    The is also a funny line(shading) as a footer at the bottom of the page. Can you advise how I get rid of this?

    #138263

    societysocial
    Member

    Can you also advise on the about and contact pages, how you remove the actual heading in the body ‘About’ and ‘Contact’. I would just like a blank space that I can edit myself.

    #138264

    Michelle

    You can remove the shading with the following CSS:

    #page:before,
    #page:after {
    display: none;
    }

    Can you also advise on the about and contact pages, how you remove the actual heading in the body ‘About’ and ‘Contact’. I would just like a blank space that I can edit myself.

    I can give you CSS that will hide the “About” and “Contact” page titles, but be aware that if you change these pages, the CSS code will change.

    .page-id-128 .page-title,
    .page-id-56 .page-title {
    display: none;
    }

    Does this do what you were looking for?

    #138544

    Caroline Moore

    Howdy! Just checking in. Have you had any luck with the above solution?

    #139392

    Michelle

    Hi there,

    Just checking in with you one more time. Are you all set or do you still need assistance?

    Cheers,

    Michelle

    #139476

    societysocial
    Member

    All set thank you

    #139525

    Kathryn P.
    Happiness Engineer

    Great! I’m closing this thread but feel free to start a new one if you need anything else.

Viewing 9 posts - 1 through 9 (of 9 total)

The topic ‘Remove border’ is closed to new replies.