• Resolved Dani

    (@danicasati)


    Is it possible to hide border around post with CSS by specific grid?
    Any code sample?

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Support Habib

    (@habibjh)

    Hi @danicasati
    Yes, it’s possible. Which layout do you use? Can you please share the URL that is made by the post grid? That we can provide you with the correct solution.

    Thread Starter Dani

    (@danicasati)

    Sure:
    https://venbo.co/viernes-17-06-22-7pm/

    I’d like to configure certain events to display them withous border.
    I’m actually use STYLE 1.

    Plugin Support Habib

    (@habibjh)

    Hi @danicasati

    Please copy the below style and put them to Appearance > Customize > Additional CSS

    .tpg-shortcode-main-wrapper .layout1 .rt-holder {
        padding: 0;
        box-shadow: none;
    }
    .tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail {
        padding: 0;
    }

    Hopefully, your issue will be fixed. Please let us inform after doing that.

    • This reply was modified 2 years, 5 months ago by Habib.
    Thread Starter Dani

    (@danicasati)

    Is it possible to add a custom CSS class and only hide border for that class?

    Plugin Support Habib

    (@habibjh)

    Hi @danicasati

    Yes if you want you can add a custom CSS class in the parent of any shortcode. Just check the screenshot to see how to add the class – https://prnt.sc/QrgNsCPfjXer

    If you add a custom CSS class then you have to modify the CSS that I gave you before. Please check the below code for details-

    .tpg-shortcode-main-wrapper.your-class-name .layout1 .rt-holder { 
        padding: 0;
        box-shadow: none;
    }

    Thanks

    Thread Starter Dani

    (@danicasati)

    It doesn’t work.

    Plugin Support Habib

    (@habibjh)

    Hi @danicasati,

    I think you didn’t replace (.your-class-name) with your inputted parent class. Please see the screenshot – https://prnt.sc/0yVJcu3hDht6. Another thing- Please don’t use any empty space between classes.

    Thanks

    Thread Starter Dani

    (@danicasati)

    It works now.
    Thanks for support.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Hide border’ is closed to new replies.