This is a css fix, not related to wordpress.
Add this css:
div#wpcf7-f723-p105-o1 {
float: left;
}
div#Widgets_on_Pages_9 {
float: right;
}
Hey thank you, but I am not sure where to add it. This is what I see in the text section:
<p style=”text-align: left;”>[contact-form-7 id=”723″ title=”Contact form 1″]</p>
<p style=”text-align: left;”><img class=” wp-image-1086 alignleft” src=”http://vetiveriastatera.com/wp-content/uploads/2014/11/Untitled-design-18-300×39.png” alt=”Untitled design (18)” width=”250″ height=”33″ />[widgets_on_pages id=9]</p>
Where should I add the css ?
Thank you so much!
You don’t need to add it to a PHP file. Instead, you should add the code in a custom CSS plugin or your theme’s built-in custom CSS option, if one exists.
It worked! Thank you guys.
I added with the plugin called simple custom css. I just need a little bit of fix though
http://vetiveriastatera.com/contact-us-2/
I just fixed with this block
div.wpcf7 {
float: left; <—add
margin: 0;
padding: 0;
width: 45%; <-add
}
Add this entire block:
.widgets_on_page {
float: left;
width: 50%;
}
thanks guys and thanks chrisfromthelc!