Hi! I must say I really love this theme, it is almost out-of-the-box ready for our purposes, but I hope you can answer the following questions related to the changes we see necessary:
1. For the post templates, we would really love to have the default style with the text BELOW the top picture instead of above. Is this possible? I find it strange that this is not one of the pre-defined templates.
2. Our top menu consists of 3 elements. Is it possible to highlight ONE of the 3 menu elements with another background color? Example: http://www.screencast.com/t/W6jQvE3el
3. Under “Post Settings” I can turn off showing author and date for all posts. This affects both the frontpage and sidebar (preview of posts) AND the post page itself. I would like to turn off/disable this for the frontpage and sidebar, but still show author + date at the very top of all posts when on the post page. Is this possible?
4. For “Block 13”, can I also show the introduction and just not the title underneath the picture?
5. Is it possible to modify/create a block (similar to Block 13 or 20) to show the full picture, then title, then introduction? Example: http://www.screencast.com/t/y0s4F7irXIKh
6. At the bottom of every post, underneath the Social Sharing buttons, there are two “menus” (related articles + more from author) above 3 post previews. I would like to only have one menu (delete more from author), is this possible? Explanation: http://www.screencast.com/t/15j0LrFz
7. I have created a new page but I can’t figure out how to make the right hand side of the page “sticky”, so that when scrolling down on the page the content on the right hand side will always be on top.
Hello lettogsunn,
1)As you can see in our demo preview, for post template default, the content is already BELOW the top picture and it is not above of it, like this -> http://demo.tagdiv.com/newspaper/120-er-visits-linked-synthetic-wordpress-nyc-past-week/ -> http://screencast.com/t/TlFbWEE5 If is not what you mean, please provide more details in this regard.
2)It is required for your website URL so I can further inspect your icons and also, so I will be able to provide a more accurate response.
3)You have to leave to active this option from your panel and then you have to use a bit of CSS code to do that. Please try the code below and place it in Theme panel->Custm CSS area.
The code is ->
.home .td-module-meta-info {
display:none;
}
.td-ss-main-sidebar .td-module-meta-info {
display:none;
}
4)This is our block 13 -> http://demo.tagdiv.com/newspaper/block-13/ It shows the title and the excerpts below the title. I do not know what introduction you are referring to. Please provide more details in this regard.
5)Unfortunately, this is the standard design for our blocks and if you want to change the structure of this you can damage the layout of them. Also, please notice that is not a simple task and require some additional customizations. As a hint, you can begin to block 20 with the below code.
The code is ->
.td_block_20 .td_module_14 .td-module-meta-info {
bottom: -170px;
}
.td_module_14 .td-excerpt {
margin-top: 170px;
}
6)Please try the code below.
The code is ->
.td_block_related_posts .td-related-right {
display:none!important;
}
7)I suppose that you are reffering to our smart side bar. For more information about how you can create this, please check our documentation here -> https://forum.tagdiv.com/smart-sidebar-2/
Hope this helps!
Thanks.
Hi, thanks a lot! This was very helpful. Here are some follow up questions to what was not clear:
To question #1: I was not clear enough here. I meant if it is possible to have the title text below the picture for the default post template, i.e. swap the header picture and title.
To question #2: Our site is https://www.lettogsunn.no. We want to have the menu element “BESTILL HER” to have a background color as default, while the two other elements (MEDLEMSBETINGELSER and OFTE STILTE SPØRSMÅL) remain unchanged.
To question #3: That helped, BUT now also the title+excerpt beneath the pictures on the sidebar and from some of the main column items disappeared. I guess that the article title is also part of the “meta-info” module. Any way to show the title, but not the author and date? See https://www.lettogsunn.no for how it looks now.
To question #4: I guess I was referring to “Block 13 on 1 column”, like on the right hand side of the page you referred to. Is it possible to have both title and excerpt below picture for this block?
Thanks a lot for great support!
Hello lettogsunn,
1)If you want to swap the post title below your featured image you have to alter the code from loop-single.php core file, like this -> http://screencast.com/t/d2DfjTowt -> http://screencast.com/t/9ZnKttvvj4
2)Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.menu-item-186{
background-color:#67bb78
}
The result you should see here -> http://screencast.com/t/d8uOvnbn
3)Replace the code above with the following code.
The code is ->
.home .td-post-author-name, .td-post-date {
display:none;
}
.td-ss-main-sidebar .td-post-author-name, .td-post-date {
display:none;
}
4)Please try the code below.
.td_module_mx3 {
padding-bottom: 126px;
}
The result -> http://screencast.com/t/Sg78U76frXU
Thanks.