Home › Forums › Automattic › Elemin › Remove border
-
AuthorPosts
-
societysocialMemberHi,
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.comAugust 13, 2013 at 4:51 am #138193
MichelleTo 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.
August 13, 2013 at 11:25 pm #138262
societysocialMemberThank 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?
August 13, 2013 at 11:28 pm #138263
societysocialMemberCan 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.
August 14, 2013 at 12:13 am #138264
MichelleYou 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?
August 19, 2013 at 6:27 pm #138544
Caroline MooreHowdy! Just checking in. Have you had any luck with the above solution?
September 3, 2013 at 5:56 pm #139392
MichelleHi there,
Just checking in with you one more time. Are you all set or do you still need assistance?
Cheers,
Michelle
September 3, 2013 at 10:33 pm #139476
societysocialMemberAll set thank you
September 4, 2013 at 3:26 pm #139525
Kathryn P.Happiness EngineerGreat! I’m closing this thread but feel free to start a new one if you need anything else.
-
AuthorPosts
The topic ‘Remove border’ is closed to new replies.