QUOTE(pandy @ Mar 3 2014, 04:34 PM)

No attachment.
About the markup snippets, the second one is part of a table. You'd better post the markup for the whole page together with any CSS you may have. If the page is on the web it would of course be even better if you could link to it.
I don't have the page online because I'm experimenting with the html and css to see if I can build the site on my own (or on my own with forum help lol) before anything gets implemented. As for the attachment, I'm choosing the file and clicking add this attachment. I don't see anything else I can do with the attachment. How do I add it to the post?
Here is everything I've got for the StyleSheet. Again, sorry for the mess. And below that is my html file for the page.
@charset "utf-8";
/* CSS Document*/
/*Define the body element's color*/
body{
font-family:arial;
font-size:18px;
color:#FFFFFF;
background-image: url(http://i1374.photobucket.com/albums/ag439/SomeDude0nline/LeatherDark_zps546a354f.jpg);
background-size: cover;
}
#content {width: 500px;}
.align-left { float: left; }
.align-right { float: right; }
/*This section is for links*/
ul.navbar {
overflow:hidden;
margin: 0 auto;
padding: 0;
list-style-type: none;
width: 90%
}
li {
float: left}
a:link,a:visited
{
display:inline-block;
width:200px;
font-weight:bold;
color:#FFFFFF;
background-color:#000000;
text-align:center;
padding:5px;
list-style-type: circle;
text-decoration:none;
text-transform:uppercase;
}
a:hover,a:active
{
background-color:#000000;
}
a {
border: 3px outset;
padding: 2px;
text-decoration: none;
}
a:active {
border: 4px inset;
}
ul.b {
display: list-item;
list-style-type:circle;
overflow:none;
margin: 0;
padding:0;
}
a:link
{font-weight:normal; color:Navy}
a:visited
{font-weight:normal; color:White;}
a:hover
{font-weight:bold; color: Orange; font-variant:small-caps;}
/*This section is for a paragraph section*/
p {font-style:italic; font-size:18px;color:#FFFFFF}
p.small {line-height:75%}
white {color:#FFFFFF;}
h1:first-line {
font-family:arial;
font-size: 45px;
}
h2:first-line {
font-family:arial;
font-size: 20px;
}
/*This section is for the image's black border.*/
img {border-color: #000000; border:thick; border-style:ridge;}
Here is the HTML file for the page
<html>
<head>
<link rel="stylesheet" type="text/css"
href="stylesheet.css">
</head>
<body>
<p class="small" align="left"><img border="0" src="jr logo.jpg" width="300" height="150"
align="left" vspace="20" hspace="63"/>
<br/>
<br/>
<br/>
<br> Store Hours: Tuesday-Saturday 12:00 P.M. - 6:00 P.M.</br>
<br> Store Location: 1465 Mangrove Avenue - Suite A - Chico, CA 95926</br>
<br> Store Number: (530) 343-9341</br>
<br> E-mail Address: jrsports@pacbell.net</br></p>
<br/>
<ul class="navbar">
<a href="home.htm">Home</a>
<a href="products.htm">Products</a>
<a href="calendar.htm">Calendar</a>
<a href="Box.htm">Box Break Spots</a>
<a href="buying.htm">What We're Buying</a>
</ul>
<p>Breakers TV Channel</p>
<p><font size="6">Next Broadcast: March 10th</font></p>
<br/>
<br/>
<font size="6">We buy and sell all things sportscards</font></center>
<br/>
<iframe class="tkf-em-cal" scrolling="no" width="400px" height="800px" frameborder="0"
style="border-width:0;background-color:transparent"
class="align-left"
src="https://tockify.com/em/cards" alt="">
<a href="https://tockify.com/cards">J&R Sports Cards Upcoming Events</a></iframe>
<td style="text-align: center;"><iframe
class="align-right"
src="http://breakers.tv/embed/video/jrsportscards?viewers=true&autoplay=true"
framespacing="0" frameborder="0" height="300" width="480" alt=""
</iframe></td>
</tr>
</tbody>
</table>
<br><Breakers TV Channel</br>
<p><font size="6">Next Broadcast: March 10th</font></p>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</body>
</html>