Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #771020

    Dear Enfold team,

    I want to change the italic style within the recent posts widget to normal style text. Even though I tried serveral codes described in the forum, nothing changed. Could you please send me a quick CCS code for this purpose?

    Furthermore, is it possilbe to change the space between two posts on the blog-single-author-full site?

    Best regards,
    Uli

    #771506

    Hey XL-protein,

    Please try the following in Quick CSS under Enfold->General Styling:

    .widget_recent_entries li a {
        font-style: initial !important;
    }

    Are you looking to decrease the space? If so please try this CSS and decrease both the margin and padding values:

    .template-blog .post_delimiter {
        margin: 0 0 50px 0;
        padding: 50px 0 0 0;
    }

    Best regards,
    Rikard

    #771640

    Dear Rikard,
    Thanks for the fast reply. I tried both Quick CCS scripts. Unfortunately, there was change in the styling.

    #772267

    Hey XL-protein,

    Unfortunately, there was change in the styling.

    I thought you wanted to change it? Did you try changing the values like I suggested? Try this instead:

    .template-blog .post_delimiter {
        margin: 0 0 20px 0 !important;
        padding: 20px 0 0 0 !important;
    }

    Best regards,
    Rikard

    #772666

    Sorry there was a typographical error in my last post. I wanted to write “no change”. Also the new Quick CSS doesn’t change anything. In addition I do not get rid of the italic style within widget_recent_entries.

    #775238

    Hi,

    Ok, thanks for the feedback and sorry for the late reply. It looks like you are running and old version of the theme, could you try updating the theme to the latest version (4.0.5) to see if that helps please? http://kriesi.at/documentation/enfold/updating-your-theme-files/. Please make sure to backup your site before updating in case you should have to roll back for any reason.

    If you want to remove the italic styling then you can try this in Quick CSS:

    .widget_recent_entries li a {
        font-style: inherit !important;
    }

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.