No matter what I put after these buttons, the content under them is also a button. What am I missing? You can see on my current site - the footer is after the button so there's a half footer that links to google (same place as the buttons).
http://staging.yodega.com/sell
Would include a screenshot but that won't really convey it.
Relevant code attached.
/* formats buttons on sell page */
#buttons {
text-align: center;
margin-top: 30px;
}
#button1{
width: 200px;
height: 50px;
border-radius: 25px;
-moz-border-radius: 25px;
-webkit-border-radius: 25px;
border: 0px solid #800000;
color:#F0E8E0;
background-color:#3a3a3a;
margin-bottom: 5px;
margin-right: 3px;
margin-left: 3px;
}
#button2{
width: 200px;
height: 50px;
border-radius: 25px;
-moz-border-radius: 25px;
-webkit-border-radius: 25px;
border: 0px solid #800000;
color:#F0E8E0;
background-color:#3a3a3a;
margin-bottom: 5px;
margin-right: 3px;
margin-left: 3px;
}
<div class="clear"></div>
<div class="astericks">
*Base rate starts at 5.5% and can be lowered via referrals. Learn more on the <a href="yodega.com/referrals">referrals</a> page
</div>
<div id="buttons">
<a href="http://www.google.com"><button type="button contact-button" id="button1">Sign Up</button>
<a href="http://www.google.com"><button type="button contact-button" id="button2">Seller Resources</button
</div>
<div class="clear"></div>
` between the buttons. This would be the cause of the buttons being on two lines. It would, however, be best if you removed the ` – Charles Aug 16 '17 at 03:19
? I don't believe I have added that. (I currently have two sets of buttons as Im testing them out - but both are stacking). – Jacob Jordan Aug 16 '17 at 03:24
`. In the middle on Line 334 (or the first button) you have a `
` tag being used. `
` is used to start a new line in HTML, generally within a content tag (i.e. `p`, `h1`, `h2`, `span`, ...) – Charles Aug 16 '17 at 03:31
in my code. I wonder if this is some type of browser interpretation.