But I am struggling to get this working as the classes on the blog posts are the same on the landing page as when you actually go in to view a singular post. This means if I change the styling of the posts on the landing page, it will also change the styling on the individual blog post pages.
Changing the layout of my blog landing page
Hi,
I am using Ublogsy on my site. Currently my blog looks like this:
http://www.purplecubed.com/blog
However, I would like to change the layout to something resembling this:
http://www.hellosoutherly.com/blog
But I am struggling to get this working as the classes on the blog posts are the same on the landing page as when you actually go in to view a singular post. This means if I change the styling of the posts on the landing page, it will also change the styling on the individual blog post pages.
Any ideas of how I can work around this?
Thanks,
Ciaran
Can you add classes by id in the CSS, so that they only affect the home page? E.g.
<nav class="navbar navbar-default" id="uBlogsy_nav" role="navigation">
The class is Bootstrap, the id is the bespoke class.
Then in an extra override.css:
.navbar navbar-default {
font-family: 'frontage-regular-webfont';
}
#uBlogsy_nav {
background-color: #2B2B6B;
}
is working on a reply...