Tagged: Color Section Height
How can I make the color section of the layout element adjust in its height so it is a bit tighter in relation to the text contained within it? Thanks – Ken
p.s. I do have padding at 0 but would still like to make it a bit tighter…
Hi!
You can assign that an ID:
Then with CSS (add it to Quick CSS):
#my_section{
height: 300px;
}
Change 300px for the desired height.
If that doesn’t work, please post a link to the page where you have this color section and the specific height you would want.
Regards,
Josue
I am trying to use these instructions and having no success; can you tell me whether they still work with the new version of enfold? My page is at http://realfreshclient.com/banetti/portfolio-2/life-sciences-2/ (use gizm0 to see it), and I’m trying to get a small band of red at the top.
I assigned red_section in the ID field of the color section and placed
#red_section{
height: 80px !important;
}
but I don’t see the ID being called in inspector…unsure what I may be doing wrong.
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
div#red_section {
height: 70px;
min-height: 70px;
}
Regards,
Yigit