Waiting for a swift reply!
Some respect and patience is expected from you.
It is only because I believe in your cause that I am taking the time to reply to you.
Your problem is that The markup of the Compliance section uses <p> blocks which are specified in “style.css line 236”, to format into 3 columns. Whereas the About section uses <h3> and h5 and ol elements among others. So your solution is to get that section up in the editor in HTML mode and fix the markup.
It is quite clear that the designer of the css intended paragraphs to work just like you see it, the code is:
.section > .container > p {
-moz-column-count: 3;
-moz-column-gap: 30px;
-webkit-column-count: 3;
-webkit-column-gap: 30px;
margin-bottom: 25px;
overflow: hidden;
}
Hello poscha,
In style.css you have used below given code.
.section>.container>p {
-moz-column-count: 3;
-moz-column-gap:30px;
-webkit-column-count: 3;
-webkit-column-gap:30px;
margin-bottom:25px;
overflow:hidden;
}
Where -moz-column-count: 3; this code ddivides the element in 3 column and -moz-column-gap:30px; this code specifies the space between that columns, due to which you are getting the issue. Try to comment the code or remove it.
Thank you
Thread Starter
poshca
(@poshca)
Sry! If I have hurt someones’ sentiments by my request of a ‘swift reply’. I didn’t intended to do that.
There is one request I would like to make here is that as I don’t understand the CSS and HTML tags , can you at-least tell me how can I locate this CSS code you guys are talking about in order to edit it.
Screen shots will be appreciated! 😛
Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
@poshca Stop using the modlook tag. Really, cut that out you are abusing it.
https://wordpress.org/support/guidelines/#reporting-threads-modlook
This is not WordPress.COM, you don’t use that tag here unless there’s something abusive going on. That’s not the case here.
Hello poshca,
It is hard to know just where your home page “compliance” text is located. It may be on a PAGE or possibly in a POST. You need to browse around until you find it. Then OPEN that text in EDIT mode, the editor has two tabs, VISUAL and TEXT, you want the TEXT one, This will show the text and html, change the “<p>” and “</p>” tags to h3 etc.