Name of CSS for elements

Hello, X-Masters.

I use several “Content Area Off Canvas” elements in one webpage. Each element has a different content.

I would like to rotate each element’s button to different degree.

Element #1 - 40der, #2 - 10deg and so on.

Where I can find the name of elements for work with CSS?

I need apply
transform: rotate(-XXdeg);
to each elements button.

Thank you, Masters.

Hi Dmitry,

You can make use of the Element CSS feature of the Content Area Off Canvas element to target each content area button individually and add CSS code to them.

To do that, please add this code in the Element CSS of the element:

$el.x-anchor .x-graphic {
     transform: rotate(-40deg);
}

Hope this helps.

Jade, thank you for your help!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.