I need some help adding Vertical Line in front of text block, just like here:
Hi anristudio,
Edit your textblock and go to Advanced (tab) > Developer Settings > Custom CSS Class, then on that field put this: left-border
Then go to Enfold > General Styling > Quick CSS and add this CSS code:
#top .left-border {
border-left: 1px solid black;
padding-left: 30px;
}
You can also add this to any column (I would suggest this over text block) so you can add special headings and textblock inside it and get the same effect.
Best regards,
Nikko
Thank You Nikko, it works!
How could I control height of the vertical line?
Hi anristudio,
You’re welcome :)
I believe what you want is to set a minimum height, if yes, then please use this CSS code instead:
#top .left-border {
border-left: 1px solid black;
padding-left: 30px;
min-height: 100px;
}
Just adjust the min-height value.
Best regards,
Nikko