CSS In Addon - Question | JoomShaper

CSS In Addon

Peter Spiegelenburg

Peter Spiegelenburg

SP Page Builder 2 years ago

Hello,

I created this in Pagebuilder. Please look at the picture, I use the image addon.

But I would like to have no radius on the left side. So, I added in the addon in "General" - CSS Class

img1

and in "Style" - Custom CSS

.img1{
border-top-left-radius: 0px;
border-bottom-left-radius: 0px; }

but it is not working. What am I doing wrong?

Regards, Peter

0
3 Answers
Ariba
Ariba
Accepted Answer
Support Agent 2 years ago #46287

Hello

Thank you for your query.

The "img1" class you have added was linked to a parent class of that image. Kindly replace your custom css code with this and see if it is okay. If this doesn't get applied try adding "!important".

.img1 img{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px; 
}
0
Peter Spiegelenburg
Peter Spiegelenburg
Accepted Answer
2 years ago #46300

Hello Ariba,

working perfectly. Thnx.

Regards, Peter

0
Ariba
Ariba
Accepted Answer
Support Agent 2 years ago #46311

You are most welcome :)

0