-
AuthorPosts
-
June 8, 2015 at 6:45 pm #296349
Is it possible to have only the blog page include a boxed layout with background photo, to take advantage of the lovely creative layout of the icons? I would like this layout only on the blog, and not on all the other pages. (All pages but the blog are full-width.)
Thank you!
June 8, 2015 at 6:46 pm #296350Oops, I should mention I’m using the Renew stack, and here’s a link: http://dogwriters.visualspring.net/blog/
June 9, 2015 at 8:31 am #296851Hey there,
Please try adding the code below in your Appearance > Customize > Custom > CSS.
.blog .site { width: 88%; max-width: 1700px; }
Hope that helps.
June 9, 2015 at 3:56 pm #297312I changed your code to max-width: 1200px and then it worked great! But how can I have the individual blog post pages, category archive pages, etc… (all blog related pages) look the same way?
June 10, 2015 at 6:52 am #297907Hey There,
You will need to add additional class selectors. For categories, archives and index pages:
.archive { width: 88%; max-width: 1200px; }
For single blog page:
.single { width: 88%; max-width: 1200px; }
or you just add them all in one statement with a comma.
June 10, 2015 at 12:20 pm #298199I added this additional code, and it added the background photo, but shifted everything to the left. Here’s an example of an archive page. Same thing happened on the single post pages:
http://dogwriters.visualspring.net/2015/06/June 10, 2015 at 12:38 pm #298212I’m also noticing when I added the “single” and “archive” it also changed my forum page (but not all forum pages.) So I think this is getting too complicated, and I’ll just give up on the idea.
June 11, 2015 at 3:03 am #298790Hello There,
Please use this code instead:
.archive:not(bbpress), .blog, .single:not(bbpress) { margin: 0 auto; width: 88%; max-width: 1200px; }
Please let us know if this works out for you.
-
AuthorPosts