- This topic has 5 replies, 2 voices, and was last updated 9 years, 2 months ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › align email sign up
Tagged: alignment
How can i align left the aweber signup forms on http://oldspartanfitness.com/about/
You can add float: left to this –
.af-form-wrapper {
float: left !important;
}
Add the above to your css file.
You’ll notice the rest of your content jumping up on the right side of the form after you do this. You would need to separate everything by adding clear: both; to the next set of content so it shows up on its own line rather than mixed in with the form.
is this the functions.php file? Where do I put the code?
You would add this to your css file
I added the float left code to misc section of CSS. Nothing moved. Where in the CSS should it go?
You’ll need to add !important so it will override the plugins css code. Once you add that, then you’ll see the other thing I was talking about in my previous comment.