Quote:
|
Originally Posted by herkalees
Will the vertical position of the anchor always be the same? Or will both vertical and horizontal positions need to change?
|
vertical position will stay the same - the site will just be mirrored horizontally. i used this and it works fine for now:
HTML Code:
/*Arabic stylesheet*/
div.header a {
position: absolute;
top: 75px;
right: 10px;
}
/*English Stylesheet*/
div.header a {
position: absolute;
top: 75px;
left: 10px;
}
Quote:
|
Originally Posted by Sri
I think positioning is the best solution, anyway pls try this:
Enclose both elements(anchor and logo) inside seperate SPANs and add fixed width to both.
hope this will help.
|
...how will this help? both the logo and anchor are block-level elements, right? why should i enclose them in spans?