Override 40px bottom margin for [column] shortcode
I'm using column shortcodes to create page content. For each column there is a 40px margin which breaks the text flow if you create complex layouts where text of the second row continues text from the first row.
How can I override this setting in the shortcode? I read that the class attribtue is not possible. What's then a solution? I can not use the Muffin Builder because the page content is generated by my PHP code.
float: left;
margin: 0 1% 40px;
}
Example for page content:
[three_sixth] This is my fancy text [/three_sixth]
[one_sixth] Image [/one_sixth]
[one_sixth] Image [/one_sixth]
[one_sixth] Image [/one_sixth]
[one] which describes some fancy facts [/one]
Now, the which describes some fancy facts is 40px below the This is my fancy text . which breaks the flow while reading.
Check the screenshot: https://drive.google.com/open?id=1GiDHFjT-d9UDKDAa3sZCtsemVQ5p8unA
Comments
You can change this margin only for this section.
But if you don't use a Muffin Builder, then it will be very hard.
You have to apply somehow there an ID or Class which will be unique for this element.
There is no other option, unfortunately.