Change Visited Link color of article preview

Hello Colorlib team :slight_smile:

I’ve got 3 questions on design:

  1. I would like to change the color of the blog site where the single articles are shown as previews. Once I’ve visited an article, the color of the visited link in the preview is that common purple which I would like to change. What’s the CSS to address exactly those article-preview-title links? (Note: I use the plugin “Content Views” for my previews - just in case that this is important to know).

  2. How do I hide (from view, not from code!) the date and calendar icon beside the date from single articles? I release a lot of content which is not date-relevant, so it doesn’t fit to show the post date there.

  3. How do I align the logo images in the client section carousel in the vertical center? Right now, logo images are fixed at the top, and as they are not all equally high, it looks kind of displaced the more I get to the right.

Link to my page: http://premiumbands.de

Edit: I’ve managed to solve Question 2 now. Issue 1 & 3 are still to be solved :stuck_out_tongue:

Hi,

  1. You mean in this page http://premiumbands.de/blog/ the article link color turned purple after you visited it? If so, use this Custom CSS in Appearance -> Addditional CSS,
.pt-cv-title a:visited {
color: #d6af77;
}
  1. Use this Custom CSS,
.logo-carousel img {
    bottom: 0;
    left: 0;
    position: absolute;
}

.logo-carousel li {
    height: 150px;
    position: relative;
}

Let us know,

Thanks,
laranz.

Thank you :slight_smile: I’ve managed to solve the first one. Unfortunately the carousel-issue couldn’t be solved that way. I have another thread about that issue, so this one here can be closed!

Thanks :slight_smile:

Hi @dominik,

Glad we helped. :slight_smile:

Let us know if you have any other questions.

Thanks,
laranz.