• Hey. First of all – still a great theme. Thanks a lot!
    Three questions:
    1. How can I customoze the READ MORE jump? (text to be displayed, size, color, appearance)? I found a way to change the text through theme files but it is very basic
    2. How to decrease the space between separate widgets on the side bar?
    3. How to change the size and color of an image caption text? I tried mofifying the Captions section but it did not change anything…
    Thanks ??

Viewing 1 replies (of 1 total)
  • I found a way to change the text through theme files but it is very basic

    If you’re handy with developing, I’d recommend creating a child theme to change the text. You can change the colors, add features, etc:
    https://developer.www.ads-software.com/themes/advanced-topics/child-themes/

    2. To decrease space, add this via Additional CSS (or via your child theme) :

    #secondary .widget {
        padding-bottom: 30px;
    }

    It’s 60px by default, so adjust as you like.

    3. Figcaptions are controlled with CSS, too. This is a bit wild, but you get the idea of what you can do.

    .wp-block-image figcaption, [class^=wp-block-] figcaption {
        font-size: 2em;
        color: pink !important;
        font-style: normal;
        text-transform: caps;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘“Read more” break’ is closed to new replies.