Eli51
08-23-2009, 08:27 PM
I would like to please know how I can put the copyright sentence on the located on the bottom of the following page http://go.internet.com/?id=474X1150&url=http%3A%2F%2Fprostores3.carrierzone.com%2Fservlet%2Fatomictimetronics_com%2FStoreFront unto the red border on the bottom?
OctoberWind
08-24-2009, 12:22 AM
Technically, you cant, because it's a (insanely large) border, and therefore not part of the active document flow.
You can, however, give the appearance that it's on the red border similar to the navigation links by changing this inline style:
<div style="margin: 10px auto; width: 90%; height: auto; font-size: 0.8em; top: 85px; position: relative;">
What this does is leave the "footprint' of that dive where it was in the document flow, and push everything below it down 85px. Because there is nothing in the document flow underneath this (remember, the border is not part of the document flow), you don't see the effects of the pushed document flow.
Also, by stating that the move is relative to it's original position in the document flow, (and not absolute to the page, like the navigation which removes it from the document flow) no matter what changes happen above or below the specified text, it doesn't directly effect that text.
You can test that a bit by taking out the position: absolute in the style for ul#navigation
Eli51
08-24-2009, 01:38 PM
To Octoberwind
Thanks the code you gave me did exactly what I needed it to do.