Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1003802

    Hi, I’m trying to change the color of the elements for my blog widget preview. The elements before the full blog entry.

    how do I change the blog widget preview title color? How would I got about changing the horizontal line under the title color as well? How about the preview of the body? finally How would I remove the lines around the date and change the date color?

    I tried this code but it didnt work. The only thing that worked was the preview color…

    h3.slide-entry-title.entry-title a {
        color: #ffffff;
    }
    
    span.av-vertical-delimiter {
        color: #EF5A3E;
    }
    
    time.slide-meta-time.updated {
        color: #EF5A3E;
    }
    
    div.slide-meta {
        border-style: none;
    }
    
    #1003864

    Hey accutherm,
    Please try this css:

    .slide-entry h3.slide-entry-title.entry-title a {
        color: #ffffff !important; 
    }
    
    .slide-content span.av-vertical-delimiter {
        border-color: #EF5A3E !important; 
    }
    
    .slide-entry time.slide-meta-time.updated {
        color: #EF5A3E !important; 
    }
    
    .slide-entry div.slide-meta {
        border-top-style: none !important; 
        border-bottom-style: none !important; 
    }

    Best regards,
    Mike

    #1004198

    looking good, thanks!

    #1004263

    Hi,
    Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.