SEO Image Hotspots
Listed In CSS » Layouts — Page 4 of 5 (View Index)You are viewing section 4 of 5 « Previous Page — Next Page »
Classes, classes, classes!The heading says it all. Each class will contain the relative position coordinates and an individual font size. Figuring these out in the first place is all about trial and error, and may take a while. The good news is, once it's done, it will work in Firefox, IE and Opera!
Let's break down the first class for you:
.n-company {
top: 29px; /* 29 pixels from the top */
left: 66px; /* 66 pixels left from where it was inserted */
font-size: 16pt; /* the font size needs to be this size to cover the area correctly. */
}Here are the rest for you:
.n-services {
top: 14px;
left: 180px;
font-size: 15pt;
}
.n-portfolio {
top: -19px;
left: 285px;
font-size: 19pt;
}
.n-contact {
top: -65px;
left: 410px;
font-size: 19pt;
} You are viewing section 4 of 5 « Previous Page — Next Page »
