Forum: HTML and CSS Mar 22nd, 2008 |
| Replies: 5 Views: 1,524 You can read about it here: http://www.w3schools.com/css/pr_class_clear.asp
Matti Ressler
Suomedia |
Forum: HTML and CSS Mar 22nd, 2008 |
| Replies: 4 Views: 1,281 Looks rather nasty (no offense)
I normally do this kind of layout like this:
<div style="position:relative; width:100%">
<div style="width:33%; float:left; text-align:center;"><img... |
Forum: HTML and CSS Mar 22nd, 2008 |
| Replies: 3 Views: 2,052 This is done so that flash objects don't need to be clicked in IE.
Your javascript file is missing or in the wrong location: http://www.greeksplanet.com/Scripts/AC_RunActiveContent.js (returns... |
Forum: HTML and CSS Mar 22nd, 2008 |
| Replies: 5 Views: 1,524 Sounds like you have an open <div> tag, most likely in your right column..... looking.... nope, tag counts match.
Try this in your footer class: clear:both;
Try also fixing these errors: ... |
Forum: HTML and CSS Mar 20th, 2008 |
| Replies: 5 Views: 1,190 So? They are completely ignored by other browsers and do not cause one little problem. While valid page structure is a grail worth pursuing, valid style sheets are not, not one little bit.
... |
Forum: HTML and CSS Mar 19th, 2008 |
| Replies: 5 Views: 1,190 The fonts look ok to me in IE6 (look in Safari!!! ekk!). You can add a little margin (or anything else you want) where needed for IE6 like this:
.nav{
width:214px;
height:200px;
... |
Forum: HTML and CSS Mar 18th, 2008 |
| Replies: 3 Views: 648 Try this:
li {
margin-bottom: 100px;
}
Matti Ressler
Suomedia |