Timeline middle line missing

Hey Muffin,

in my timeline there is no middle line, this may be caused by the dark background of my website. As you can see here:

image

How can i change the not highlighted line color?

regards
Tobias

Comments

  • Hi,
    Please always attach a link so we can check it out. If the page is offline(localhost) then our help will be limited, you will have to contact us when the page is online. Also please make sure that the page is not under maintenance before you provide us the link.
    It is always a good idea to also attach a screenshot, for that use services like snag.gy or pasteboard.co
    thanks
  • For anyone reading this sometime in the future, the solution is easy. You need to set the .style-simple .timeline_items class border color left and right. 

    As in my example:

    .style-simple .timeline_items > li h3{
        border-left-color: #747474;
    }
    .style-simple .timeline_items > li .desc {
        border-left-color: #747474;
    }
    .style-simple .timeline_items > li:nth-child(even) h3 {
        border-right-color: #333333;
    }
    .style-simple .timeline_items > li:nth-child(even) .desc {
        border-right-color: #333333;
    }
Sign In or Register to comment.