Hi there,
I have followed this tip on setting up a custom style per element:http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
I have created a custom style ‘jp-dashed’ to the one half column element.
Now I want to change the border style to ‘dashed’ by using the following css:
.jp-dashed {
border-style: dashed;
}
The border doesn’t change to a dashed one.
What am I doing wrong?
Hey Janpieters,
Set the class to the Column instead of the Text Block.
Best regards,
Josue
Hi Josue,
I have set the custom css class of the columns to ‘jp-dashed’.
And I placed this css code in my child theme:
.jp-dashed {
border-style: dashed;
}
Still no dashed borders.
What am I doing wrong?
Hey!
Please change to
.jp-dashed {
border-style: 1px solid #000 dashed;
}
let me know if it works
Best regards,
Basilis
.jp-dashed {
border-style: 1px solid #000 dashed;
}
Stil no dashed line. I’m sorry.
Hi,
Try adding !important:
.jp-dashed {
border-style: 1px solid #000 dashed !important;
}
Best regards,
Josue
Hi Josue,
Thanks!
This didn’t work:
.jp-dashed {
border-style: 1px solid #000 dashed !important;
}
But this worked:
.jp-dashed {
border-style: dashed !important;
}
Solved!