Tagged: Textblock
I am building a home page using the ALM. I have set up a 2/3 (slider) 1/3 (custom text) layout and my question is about the custom text module.
I created my own custom buttons using CSS (the default weren’t big enough) and now have a problem when I wrap them with tags. Somehow, and extra <p> is inserted creating too much space between elements. Ideally, the bottom margin will be only 25px.
you can see it here: http://mindsparkconsulting.com/clients/test2/
something inside the class=”avia_textblock” is inserting <p> tags… is there an easy way to eliminate these extra <p> tags?
Hi!
You could set the paragraph margin to 0. Try following css code
div.flex_column p{
margin: 0;
}
Regards,
Peter
thanks. ill let you know if that works.
Hopefully Peter’s suggestion worked for you :)
Let us know if you have any other questions or issues.
Regards,
Devin
yes it did! thanks!