Hi guys, need urgent help.
Let´s Start:
Theme panel – Layout Settings > Categories
My Settings:
Categorie Template > Style 8
Categorie Post Top Style > Grid 6
Background Upload > Image
Background Style > Stretch
Categorie View
Perfect Full Screen
The Issue now
If I create a post with following settings – so I always get the background from connected categorie.
My Post Settings:
Format: Standard
Post Template: Style 6
My Question:
Do you have any code to fix?
Many thanks from Berlin,
Manfred
Hello MM-Berlin,
This think is happening due because your post is from that category and take over the background from this category that you set it from Theme Panel. This is the theme behaviour with these settings and in this way, the theme was designed to work. Unfortunately, our theme does not have such an option from the panel to disable these settings for specific posts, but you can do it using a bit of CSS code to target your desired posts by post ID. Please try the code below and add it int Theme panel->Custom CSS area and hide the background for your desired post, like this -> http://screencast.com/t/mTzXH5xfesx1
The code is ->
.postid-149 .backstretch {
display:none;
}
Hope this helps and let us know how it goes!
Thank you for the message!
Hi Catalin thanks for the quick response.
Code is working but now I have another issue.
1. Background from category on posts is removed (ok)
2. Result: Background from post (Style 6) is not stretched now
Do you have any CSS code to stretch the post background (Style 6)
Many thanks in advance, Manfred
Another variant, should we do not find a solution.
Is there a possibility to add an image (only!) in the header category template Style 8 (currently is grey – if background image > is removed)
*Short praise at this point – Newspaper works apart from that flawless – good job 🙂
Hello MM-Berlin,
Please try to use a bit of CSS to have the same width with the original one.
The code is ->
.postid-149 .backstretch {
display:none;
}
.td-boxed-layout #td-outer-wrap {
width:100%;
}
If you want to add an image for that placeholder from style 8, you have to use a bit of CSS to add background image to fit the image inside the box. Please try the code below and add it in Theme panel->Custom CSS area.
The code is ->
.td-post-header-holder{
background-image: url('http://wowslider.com/sliders/demo-5/data/images/saarschleife.jpg');
background-repeat: no-repeat;
background-size: 1164px 570px;
}
}
The result you should see here -> http://screencast.com/t/do35lAR4S
Hope this helps!
Thank you for the message!