I have 2 images inserted on either side of this portion of my site, but the image on the right side is showing up too low. I've inserted an image of this, because I'm not ready to upload the changes to my site yet. If you need to see the code, do I just copy it into TextEdit and attach it?
I've validated this file through validator.w3.org but it comes up with no errors.
Thank you for any assisstance, you've all been a huge help to this newbie!
Ok did that, but...dumb question...was I suppose to delete the index.html file from filezilla?
Here's the link to my site: http://turtlecell.com
I hope filezilla shows the updated site soon. Why does it take a while for them to update stuff?
Thanks.
What you have got is a container with 3 columns. Problem is that you have not assigned a centre column.
1. On or about line 430 add
<div id="main3Center">
2. On or about line 452 add
</div>
Now we need to adjust the CSS
Have a look at the following and adjust yours accordingly
#main3 {
width: 1100px;
/*height: 640px;*/
float: left;
background-color: #556c70;
}
#main3Center {
width: 500px;
float: left;
}
#main3left {
width: 300px;
/*height: 640px;*/
float: left;
background-color: #556c70;
}
.main3leftimage img {
/*display: inline;*/
/*float: left;*/
padding-top: 120px;
/*padding-left: 50px;*/
display: block;
margin: auto;
}
#main3right {
width: 300px;
/*height: 640px;*/
/*float: left;*/
float: right;
background-color: #556c70;
}
.main3rightimage img {
/*display: inline;*/
/*float: right;*/
padding-top: 120px;
/*padding-right: 50px;*/
display: block;
margin: auto;
}
Change the width on line 192 to compensate for the border as in
#main3middle {
width: 498px;
height: 260px;
float: left;
background-color: #1176BC;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 24px;
color: #FFF;
text-align: center;
vertical-align: middle;
border: thin solid #000;
}
You're awesome. Thank you again. Some of this stuff (especially the answer to this one) are so simple, but I find myself so overwhelmed sometimes trying to figure something out, that I'm not thinking of the "simple". Now onto trying to figure out how to link the "submit" button to the newsletter email list!
Thanks again for all of your help.
North America
Europe, Middle East and Africa
Asia Pacific