Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1485423

    Can you please provide me with a css that makes the images have a border radios to appear more softer.

    #1485431

    Hi there!

    I am not a moderator or in any way someone that works there. I am a customer just like you but i thought maybe i could give you some tips.

    The css you are looking for is this:

    element.style {
    border-radius: 50px;
    }

    The element.style needs to be changed to the img you want to do it to.

    if you would use:

    img {
    border-radius: 50px;
    }

    It should work on all images.
    You might need the !important code to overrule things.

    img {
    border-radius: 50px!important;
    }

    If this does not what you want, some mod can probably look at the problem more closely.

    PS; the 50px can be adjusted to how much of a radius you need.

    #1485443

    Hi,

    Thanks for sharing @gerardlok1. If you need further help, then post a link to an example image @limedrop.

    Best regards,
    Rikard

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