Featured Content Slider Text and Category Details

  • Unknown's avatar

    Hi,

    1. How can I change the color of the featured content slider text. Is there a CSS code. Please Advise.

    2. How can I add the category in the featured content slider. It is not appearing for me. Please Advise.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello,

    I have tagged a staff to help you with this.

    Kindly be patient, someone will get back to you soon

    Thanks :)

  • Unknown's avatar

    Hello,

    Please try the code below:

    1. How can I change the color of the featured content slider text. Is there a CSS code. Please Advise.

    .featured-slider .entry-title a {
        color: #fff;
    }

    Let me know if this helps

  • Unknown's avatar

    .featured-slider .entry-title a {
    color: #fff;
    }

    Adjust the fff with a color code of your choice or better still

  • Unknown's avatar

    Hi,

    The given code is not working. It is still black in color.

    I am currently using this CSS to remove the background color.

    /*remove background from featured post 12883603-hc DA*/
    body, .featured-post-content, a.more-link {
    background: none;
    }

    Please Help.

  • Unknown's avatar

    Hi @malinidiaries

    1. How can I change the color of the featured content slider text. Is there a CSS code. Please Advise.

    This CSS code should change all of your website’s featured content slider text color to white; and red on hovering a link.

    .featured-post-content .entry-title a {
      color: #ffffff;
    }
    .featured-post-content .entry-title a:hover {
      color: #f9154e;
    }
    .featured-post-content .more-link {
      color: #ffffff;
    }
    .featured-post-content .more-link:hover {
      color: #f9154e;
    }

    You can change colors to anything you prefer by changing color codes #ffffff (White), #f9154e (Red).
    This website will help you determine color codes. http://htmlcolorcodes.com/

    2. How can I add the category in the featured content slider. It is not appearing for me. Please Advise.

    The category name is hidden from the featured content slider because of a custom CSS code you have already implemented. To make it show up again, just remove the following CSS code from your website’s Customizer.

    .posted-on, .entry-categories, .entry-footer, .byline {
        clip: rect(1px, 1px, 1px, 1px);
        height: 1px;
        position: absolute;
        overflow: hidden;
        width: 1px;
    }

    If you need further help, just let me know.

  • Unknown's avatar

    Hi,

    How can i change the alignment of text in the featured content slider. I want it on the top instead of center as my image and text is overlapping and not looking good. Please advise.

    Thank you.

  • The topic ‘Featured Content Slider Text and Category Details’ is closed to new replies.