Removing gray bar and adding links
-
Hi,
I bought the Custom CSS pack.
I want to add links to the bottom of my page.
I would like to remove the gray bar under each of my content in each page.Similar to his: http://joshidaniel.com/ (Contact | Subscribe | Archive)
My page: marcosbhd.wordpress.comThe blog I need help with is: (visible only to logged in users)
-
-
1) If you mean the numbered navigation links, this isn’t a CSS issue: the numbers will show once the number of posts you’ve published exceeds the number of posts per page that’s set in Settings > Reading.
2) To remove the grey bar, paste this into the CSS editor:
#posts .post-content { border-bottom: 0 none; } -
-
1) If you wanted to add plain text above the footer credits, this would be easy to do via CSS alone. Since you want links, you must first create them in a footer Text widget. After you add the widget, you can use CSS to modify it. (In joshidaniel’s case this was a very simple thing to do, since the added notice is the only footer widget; in your case it will involve restyling as well as repositioning.)
2) What space exactly?
-
The space is a bottom margin (nothing to do with the border). If you don’t like it, turn the above to this:
#posts .post-content { border-bottom: 0 none; margin: 0; }To center the title on static pages as well as on the single post view, add this:
#posts .postitle { text-align: center; }To center it on static pages only, add this instead:
.page .postitle { text-align: center; } -
- The topic ‘Removing gray bar and adding links’ is closed to new replies.