I'm using a 19" screen and the flags are positioned with a small but clean looking space left of the language drop down. Looks OK on my box.
I would also recommend taking the next logical step with your CSS. It looks like you're doing a great job, now move it from the inline style attribute and collect everything in a separate CSS file! Swap your style attribute for an ID <div id="flags"> and insert the text from the style attribute into a separate text file like so...
#flags {
position: absolute;
left: 80%;
top: 7%;
}
The # indicates that this is an id. Repeat this until all your styles are in the style sheet and save it with a .css extension. Then include a link tag between your <head></head> tags...
<link rel="stylesheet" type="text/css" media="all" title="ayrshirestyles" href="mystyles.css" />
The link tag in your webpage tells the HTML where to find the stylesheet. The ids in the html tell the stylesheet what their names are and the #idname identifies each ID and then indicates what styles you want to apply to that element.
Good luck with your project!
-------------------------
Whatever you can do or dream you can, begin it. Boldness has genius, power and magic in it. Begin it now.
-Johann von Goethe
When Two Hearts Race... Both Win.
-Dove Chocolate Wrapper
Chroniclemaster1, Founder of
www.EarthChronicle.com
A Growing History of our Planet, by our Planet, for our Planet.