Forum: HTML and CSS Aug 22nd, 2008 |
| Replies: 12 Views: 1,413 Not quite. You just store an id indicating which stylesheet to load. When loading the page you would then check for the id in the cookie, and if the cookie does not exits use the default style. You... |
Forum: HTML and CSS Aug 22nd, 2008 |
| Replies: 3 Views: 1,163 Apparently when using z-index you are meant to specify an absolute position, but it also works with a relative position. Maybe try:
#logo{
position: absolute;
width: 100%;
height: 80px;... |
Forum: HTML and CSS Aug 22nd, 2008 |
| Replies: 12 Views: 1,413 Yes, but AFAIK it would require a little scripting. You could save the style in a cookie, then select a stylesheet based on the value when the page loads. |