Okay
  Public Ticket #1103066
Recent Posts
Closed

Comments

  •  2
    SandyTatoo started the conversation

    Hello

    I use a child theme for my custom CSS and I'm having problems customizing the appearence of the Visuel Composer Recent Posts widget (Classic Enhanced).

    I would like to get rid of the padding around the title and excerpt of the articles but the problem is that you already put "!important" on this, so my changes don't work.


    The current CSS for this element :

    .blog-recent[data-style*="classic_enhanced"] .article-content-wrap {
        padding: 17%!important;
    }

    The CSS I would like to use (but doesn't work):

    .blog-recent[data-style*="classic_enhanced"] .article-content-wrap {
        padding: none!important;
    }

    What do I have to do ?

    Thanks




  •  9,001
    Tahir replied

    Hey Sandy,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    .blog-recent[data-style*="classic_enhanced"] .article-content-wrap {
        padding: 0!important;
    }

    Thanks


    ThemeNectar Support Team