Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #97466
    benjaminmw
    Participant

    Hi there
    I am using the free version of Fabulous Fluid. When the featured images are displaying in the slider, the excerpt text is followed by this code, which displays in the image:

    <span class=”readmore”>Read more…</span>

    How can I get that code out of the image?
    Thanks

    #97517
    Mahesh
    Keymaster

    @benjaminmw: For this, you’ll need to create a child theme. You can find more on creating child theme HERE. Then in your child theme’s functions.php add the code from the link below:
    http://bit.ly/2b36kAH
    Then go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider .entry-content span.readmore {
        display: none;
    }

    Regards,
    Mahesh

    #98002
    phillycontemporary
    Participant

    Hi! Jumping in here…

    This CSS didn’t remove the Read More button for me. My span code is <span class=”more”>Read More…</span>, but I tired both ‘span.readmore’ and ‘span.more’

    Any thoughts?

    Thanks for all your help so far!

    #98024
    Mahesh
    Keymaster

    @phillycontemporary: For hiding Read More button, please the following CSS instead:

    #feature-slider span.more {
        display: none;
    }

    Regards,
    Mahesh

    #98075
    benjaminmw
    Participant

    Thanks so much for the info!

    #98132
    Mahesh
    Keymaster

    @benjaminmw: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘HTML tag in Slider excerpt text’ is closed to new replies.