ccowell 0 Report post Posted November 11, 2011 I am trying to create forms and my submit buttons are floating left ... causing the buttons to precede the searchbox. Anyone know the css that can fix this? I am using the following code: Choose Option: Option 1 Option 2 Option 3 Option 4 Option 5 Share this post Link to post Share on other sites
catrina 103 Report post Posted November 11, 2011 Can you please post a link to your site (the page where this code lives)? The buttons need a CSS style assigned to them. Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
ccowell 0 Report post Posted November 12, 2011 Hi Catrina, You can see my button issue at http://relijon.org/sacred/3-column-test/ It's the Search button in the upper left corner. Share this post Link to post Share on other sites
Jenny 33 Report post Posted November 12, 2011 Your search button has inline styling applied, so if you are able to edit that, just add this to the button style code: [code]float:right;[/code] Otherwise you can add the following to your Custom Code -> Custom CSS: [code]#mybutton { float: right; margin-left: 5px; }[/code] ♥ Jenny :: Web designer at Simple Mama (follow me at @simplemamacom) Check out Share Me, a social sharing add-on for DMS that is super simple to set up. Share this post Link to post Share on other sites