Is it possible to easily add a border of any thickness and color to the top and bottom of a full width color section? Css?
Thx in advance.
Hey fgrippe!
Please add following code to Quick CSS and adjust as needed
.avia-section {
border: 3px solid red!important;
border-right: none!important;
border-left: none!important;
}
Best regards,
Yigit
Thx Yigit.
But will that change all the color sections? Can i apply this to individual color sections?
Hey!
Yes, you can give your Color Section element a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png
and change your code to following one
#your-custom-id {
border: 3px solid red!important;
border-right: none!important;
border-left: none!important;
}
Best regards,
Yigit
Ok. Not working, but i am probably not doing this correctly.
I added the custom css:
#test {
border: 3px solid red!important;
border-right: none!important;
border-left: none!important;
}
So, in the controls of the “color section” there is a field at the bottom that says “For Developers: Section ID
Apply a custom ID Attribute to the section, so you can apply a unique style via CSS. ”
Would i put #test or test or something else in the field to make it work correctly?
Do i select “no border styling” for the other pull down menus that address the border?
Hi!
You should put “test” in there and your code should work fine. If it does not, please post the link to your page and point out the color section
Regards,
Yigit
Hi!
Following code should work
#mmadness {
border: 3px solid red!important;
border-left: none!important;
border-right: none!important;
}
If it does not, please create a temporary admin login and post it here privately so we can look into it
Regards,
Yigit
Hi!
Please review your website now. Selector was #test instead of #mmadness in Quick CSS field. I changed it and it worked fine
Best regards,
Yigit