Hi – I am using the heading and text block add-ons to create the boxes seen in the picture. It is a bit of a shame that borders cannot be individually styled at the moment. Anyway, I am using "border-radius: 10pt 10pt 0pt 0pt;" for the top boxes and "border-radius: 0pt 0pt 10pt 10pt;" for the bottom boxes.
However, I cannot work out how to assign these at the back end – meaning
.head {border-radius: 10pt 10pt 0pt 0pt;}
in the custom css file and having CSS class "head" for the heading addon is not working.
The only way I can make it work is to create the addons, get their ID via Web Inspector and then create CSS for each box – for example, for the picture shown
#sppb-addon-cd9d55ce-23c7-4fc0-adf7-56992902b1bc {
/*** CSS Rounded 1st box top Corners ***/
border-radius: 10pt 10pt 0pt 0pt;
}
#sppb-addon-e6136dcc-0f9d-46c4-bcb9-18631e3d317f {
/*** CSS Rounded 1st box bottom Corners ***/
border-radius: 0pt 0pt 10pt 10pt;
}
etc.
This is extremely cumbersome to do for the entire site. Is there any other way of doing this? Or even to name the addons so it is not like this long line of characters cd9d55ce-23c7-4fc0-adf7-56992902b1bc but something more sensible like topbox etc?
