Blog page background

How do I change the blog page background: http://fhae.co.za.dedi507.jnb2.host-h.net/news/

Hey,

You can change the page background adding following CSS under the code below to X > Launch > Options > CSS

    background: #000 !important; 
}```

Just replace the #000 by your color.

Thanks!

Why is there no setting in the theme to set this up! I cannot get to style individual blog pages as I like to. Cant style featyred image, heading colors, dates, etc. this theme is pissing me off more and more.

Hi,

You can change the Headings color under X > Launch > Options > Typography > Headings > HEADINGS FONT COLOR, this will affect all heading in your site.

If you need to change it in the blog page only, you can add the code below in X > Launch > Options > CSS

/* blog page */
.blog .entry-title {
    color:red !important;
}

/* single post page */
.single-post .entry-title {
    color:red !important;
}

for the date you can add the following css

/* blog page */
.blog .p-meta .entry-date {
    color: red !important;
}

/* single post page */
.single-post  .p-meta .entry-date  {
    color:red !important;
}

With regards to the featured image, can you provide more info what you would like to do.

Thanks

I know css and have already changed it. You are missing my point. Wth any other modern themes i can change these settings through the general theme changes without having to inspect elements and then write css. IT SAVES TIME. and what if I want to change blog layout to other demo layouts, its very confusing with no proper documentation on how to really build a stunning site with various demo layouts.

Hi Gustav,

X is one of the most customizable themes on the market.

The color of your blog titles will follow the color of your heading titles of your website which you chose on Theme Options Typography .

Can you clarify what else you are facing difficulties so we can point you to the documentation or guide you?

Thank you and we appreacite your feedbcack.

Hi there,

I’m trying to modify some appearance attributes in my blog and I’m having a bit of trouble. While the background on the main page of the blog looks ok, The background colour in the post pages does not obey the master CSS code - it keeps defaulting to white. Is there a way to make the post pages follow the same style sheet?

Also, would there happen to be a CSS cheat-sheet for attributes that are theme-specific that could be accessed?

http://dev.badpixel.ca

Thanks

Hi @Badpixel

Please add this to Theme Options > CSS

.single-post .x-container.main:before {
	background-color: transparent;
}

But first, please check your entire custom CSS here and address all found errors, else the custom CSS I provided above or any custom CSS you’ll be adding won’t work.

I removed your site credentials because the original poster can see that. If you have a follow-up question, please write that on a new thread and provide credentials on your own thread only for your site’s security measure.

Cheers!

Thanks a lot. Appreciate it.

You’re more than welcome, glad we could help.

Cheers!