Centering Blog posts
-
Hi!
I have a specific category for my blog postings to keep them separate from my photography information. I have noticed that the blog posts seem to be off center. please see the link below:
http://laurakathrynphotography.com/2014/05/01/eight-things-your-photographer-wants-to-tell-you/#comments
Is there an easy way to center the postings with CSS??The blog I need help with is: (visible only to logged in users)
-
Please try this style and see if you like the result:
.content-area { padding-left: 100px; } -
It worked, but now the rest of the pages are off centered???
Can I use this code for JUST specific posts?? -
Oops. Okay so let’s restrict this style to single post pages. I checked that this style is not affecting other pages, but if you notice any discrepancies elsewhere, please let me know :-)
.single-post .content-area { padding-left: 100px; } -
-
That worked great!
Is there a way to change back ground colors of specific post categories?
If you see my CSS customization, I’ve had help with targeting specific pages and how to get a certain look to them via different colors.
Can I do this with posts as well??
-
We can change the background color of your category pages:
/* CATEGORY: FEATURED SESSIONS */ body.category-83106693 #content { background-color: green; } /* CATEGORY: TO MY CLIENTS */ body.category-15010744 #content { background-color: yellow; } /* CATEGORY: LAURA KATE */ body.category-43896432 #content { background-color: orange; } -
Ok! One more thing….
What about changing the background or content colors of the individual posts within these categories?For instance, could I change the color behind the text on this particular link:
http://laurakathrynphotography.com/2014/05/01/eight-things-your-photographer-wants-to-tell-you/
to look similar to this one:
http://laurakathrynphotography.com/faq/ -
We can change the background color of any post once we know the id of the post (postid-459 for the post you mentioned):
.postid-459 .site-content { background: #aaa; }So each time you have a new post, you need to figure what is the id and use it in CSS.
-
- The topic ‘Centering Blog posts’ is closed to new replies.