How do you remove the border from the form field boxes? And also remove the horizontal line border from the top of the page below the header?
Hey m,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#after_section_1 {
border: none !important;
}
#top .main_color input[type='text'] {
border: none !important;
}
Best regards,
Jordan
Thank you! Why didn’t the comments box border change? What is the code to hide the border from that box too?
Hi,
They show up fine on my end, attached a screenshot in private content field.
Please flush browser cache and refresh your page a few times – http://wiki.scratch.mit.edu/wiki/Hard_Refresh
Best regards,
Yigit
View this page:
Hey!
Please add following code to Quick CSS as well
textarea {
border: none!important;
}
Best regards,
Yigit
Thank you, perfect!