• Closed
  • Rssn
    Spectator
    June 10, 2015 at 1:09 pm #18110

    Hi,

    How can I change the font size of general link and spacing for recent post short code.

    Thanks in advance.

    Denzel Chia
    Moderator
    Posts: 2656
    June 10, 2015 at 2:57 pm #18160

    Hi,

    Please use the following in Theme Options -> Custom CSS

    This will fix the paragraph spacing.

    .excerpt-container > p {
    line-height: 2.5rem;
    margin: 0;
    padding: 0;
    }

    Using this, you will be able to change the size of the title.
    .recent-posts-content h3 a {
    font-size: 22px;
    }

    Thanks!
    Denzel

    Rssn
    Spectator
    Posts: 31
    June 10, 2015 at 10:05 pm #18169

    Hi,

    It worked! but on some areas like my flexslider the font was not changing.

    Thanks

    Denzel Chia
    Moderator
    Posts: 2656
    June 11, 2015 at 4:55 am #18176

    Hi,

    In your Theme Options-> Typography You can find a lot of settings to change font-sizes.
    Try them out first. Try the h2 font-size, if it has not effect on your flexslider title, then use the following codes in Custom CSS.

    h2.slide-title {
    font-size: 20px !important;
    }

    Thanks!
    Denzel

    Rssn
    Spectator
    Posts: 31
    June 11, 2015 at 7:26 am #18189

    Thanks you denzel.