How to change colors of "Related articles"

Posted in: Newspaper
Post count: 3

http://ferdinandlie.com/2017/03/21/the-hottest-hairstyle-at-fashion-week-is-not-on-the-runways/

Please see link.

Question 1: At the bottom I would like to change the color of the box “Related articles” to black background and white text. Ive tried all options to change colors. without succes.

Question 2: At my “Home page” my titles don’t change colors when you hover on them. see https://demo.tagdiv.com/newspaper_blog_travel/ where it works. How to change this?

Question 3: In my first post “This is me”, when you hover on title, the text becomes black. How to change this to another color?

Question 4: in section “Home” I want to remove the text “Home > Home” and “Home”. How to remove this?

Can you help me?

Cheers

  • This topic was modified 9 years by ferdinand98. Reason: added extra questions
Post count: 3

Question 6: is it possible to change the Main header in this way: https://www.garyvaynerchuk.com/

I want Home to be highlighted in a color when you visit my site, then when you hoover on other Sections, it should color up

Cheers

Post count: 3

Can someone of the theme creators please give a solution?
Cheers

Post count: 23312

Hello ferdinand98,

1)If you want to achieve this, please try to code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-magazine .td-related-title .td-cur-simple-item{
color:white!important;
}

The result is here -> https://www.screencast.com/t/D6OaCS1dUmRQ

2)Here is talking about two different header styles. Notice that you are using the header style 5 and the Travel Demo uses the header style 8. If you want to have the same theme behavior regarding on the main menu, you should switch your header to the header style 8 and then you will have this thing. Also, if you want that your color to be another when you hover over the menu items you should use a bit of CSS code to do this. Try the code below and place it in Theme panel->Custom CSS area.
The code is ->

.td-header-wrap .black-menu .sf-menu > li > a:hover{
color:black!important;
}

The result can be found here -> https://www.screencast.com/t/WgfTgrjq

3)
4)IF you want to remove the Breadcrumbs from the top of your website, you should change the page template to default template or you can use a bit of CSS code to do that.

The code is ->
.td-crumb-container{
display:none!important;
}
.td-page-header{
margin-top:10px!important;
}

The result is here -> https://www.screencast.com/t/kXmLEEzV

4)Check your theme panel, Theme Colors settings and ensure that your colors settings for all elements are setup on default.(push to be clear) Clear all your caches and check the results.

6)Please consult our documentation here -> https://forum.tagdiv.com/newsmag-header-styles/ because there you will find our available header style. If you want to have anything else, you should implement it yourself because we cannot provide custom services at the moment, sorry!

Thanks for your understanding!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.