your theme seems to be using post_class() and body_class() so there should be post specific css IDs in the html.
please use a browser inspection tool to find the specific css ids or classes;
Thanks alchymyth i need to style all the posts not a specific post anything I try effects the blog page or the site as a whole.
PS not the blog page but the posts 🙂
Im trying to apply these 3 pieces off css to to posts generally but not the “blog page” or my latest news page.
.one-column #page {
background-color: white;
}
#access {
display: none;
}
.footer-1 {
display: none;
}
try using a browser inspection tool, or look into the html code ouptut in the browser, to find the common CSS class in the body tag for all posts;
could be .single (?)
Thanks alchymyth that done it 🙂