Okay
  Public Ticket #1540859
How to add image grid gallery border radius corners
Closed

Comments

  • obri3n started the conversation

    https://newlandshall.co.uk/ 

    Id like to add border radius to image grid gallery images using css 

    border-radius: 3px;

    *** 

    Side note... If I name an item with a class name, eg classic cars, how would I enter the css for that item?

    .classiccars {
        border-radius: 3px;
    }

    I don't think this is right? : )

  •  2,744
    Andrew replied

    Hi obri3n,

    Could you try this CSS:

    .flex-gallery .slides img{
        border-radius:5px;
    }
    .portfolio-items .col img{
        border-radius:5px;
    }
    

    add it to salient \ general settings - css script related - custom css code.

    To add a CSS class to an element you can find an extra class name option on the element's settings. You can add the CSS class to that then use it to target the element using your own custom CSS.

    Hope this clears things up.