Forums
Home / Theme: Olsen Light / Show three columns
(@gstar)
8 years, 1 month ago
How can I make text show in three columns?
(@markwaregr)
Hello there, you will need to add this
.single .entry-content{ -webkit-column-count: 3; /* Chrome, Safari, Opera */ -moz-column-count: 3; /* Firefox */ column-count: 3; }
in your custom CSS box under Appearance->Customize->Other.
Thanks @markwaregr.
I meant just in a specific page for one section of text.
I think this CSS changes all text to three columns?
Hi there, you can add a new HTML element with a custom Class from your WordPress editor (text) like this <div class="three-columns">Your text here</div> and use this
<div class="three-columns">Your text here</div>
.three-columns{ -webkit-column-count: 3; /* Chrome, Safari, Opera */ -moz-column-count: 3; /* Firefox */ column-count: 3; }
in your custom CSS.
Thank you that works!
Glad I could help!
Can you mark this thread as resolved?
Sure, done.