Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    There’s a few ways of doing this, but perhaps the easiest is to use custom CSS to override the Read More label already there (but hidden for screen readers). It also depends on which blog style you are using.

    Example Overide:

    .blogstyle1 span.screen-reader-text {
        width: 100px;
        height: 20px;
        clip: auto;
    }

    That is if you are using the first blog style, but change it if you are using another. It also greatly depends on if you are using excerpts for your summaries. IF so, then things will get a lot more messier/complicated to overide it.

    Thread Starter ValerioM

    (@valeriom)

    I have not solved. If I insert the link you can help better?

    Theme Author Shaped Pixels

    (@shaped-pixels)

    What is the link to your website?

    Thread Starter ValerioM

    (@valeriom)

    Theme Author Shaped Pixels

    (@shaped-pixels)

    This should do it…

    .blogstyle3 .more-link .screen-reader-text {
        clip: auto;
        width: 140px;
        height: 20px;
        margin-left: 6px;
    }

    The key was to know what the blogstyle was…yours is set to blogstyle3. The code will make the screen reader text be visible next to the icon. Only problem though is that it would be very difficult to get it to float on the left side of the icon. To do that, then you would need to switch to using a child theme and then edit the theme file where that is. A bit of work though.

    • This reply was modified 7 years, 10 months ago by Shaped Pixels.
    Thread Starter ValerioM

    (@valeriom)

    Thank you for your help!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘“Read More” Text + Icon’ is closed to new replies.