Add space after gallery and left align carousel

Product:

Question:

I am using WonderPlugin Portfolio Grid Gallery Commercial Version 6.0C and WordPress 4.4

I need to add space between your plugin and the text below. I've tried adding it in your skin css and in my style.css and have not been able to figure out how to do it either way. Can you tell me how to make that work?

Similarly, with WonderPlugin Carousel Commercial Version 7.0C, I need to move the vertical carousel to the left.

Answer:

1. In the post/page editor, switch to Text mode, then add the following HTML code after the gallery shortcode:

<p style="margin-top:100px;"></p>

The above code will add 100px gap after the gallery.

2. You could add the following HTML code around the carousel shortcode:

<div style="float:left;">
[[wonderplugin_carousel id="2"]]
</div>
<div style="clear:both;"></div>