Okay
  Public Ticket #224616
edit border wp_caption
Closed

Comments

  • Mario started the conversation

    I'm working with a child-theme - i'd like to remove the border of the caption. I tried this in the css-file of the child:

    .wp-caption { border: none !important; }

    Unfortunately it doesn't work - could you give me a hint, how to do it?

  •  8,470
    Tahir replied

    Hey Mario!

    Could we have a url so we can write you working css. 

    Cheers


    ThemeNectar Support Team 

  • Mario replied

    Sure - here we are:

    goldschmiede-cafe.de/portfolio/goldschmiede-bender-sarto/

    the picture of the blackened cherries on wood ...


  •  8,470
    Tahir replied

    Hey Mario!

    To remove the Grey Area, Add this into the Custom CSS box located in your Salient Options panel:

    body .wp-caption {
        background: transparent !important;
    }
    

    Cheers


    ThemeNectar Support Team 

  • Mario replied

    Thank you for that!

    Meanwhile  i found this solution for the child-css:

    .wp-caption { background: transparent !important; border: none !important; }

    Mario