Not signed in (Sign In)

SkillShare - A place to discuss Web Standards and Web Design topics

Categories

Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorlynnkeen
    • CommentTimeJun 7th 2006
     permalink
    I have posted a site I am working on at www.keenwebdesign.com/test/GLL

    There are two pages. On my computer at the office I can view the page in IE and it looks fine...but after posting online, I see that the whole page is off. Can I ask for a little guidance as to why I might be seeing it this way?

    On the second page, there is supposed to be a logo in the middle...and the tagline at the right upper corner of the page...I can't seem to get one to show and the other to align...argh!

    I feel so useless!
    Thanks for your help!
    Lynn
    • CommentAuthorpmac
    • CommentTimeJun 7th 2006
     permalink
    Hi,
    Seems to me that there is a problem with your html; at a guess i would say that the tagline and image divs should be inside the header div.

    <div id="header">

    <div id="image" align="center"><img src="images/circlelogo2.jpg"></div>

    <div id="tagline"><img src="images/tagline.jpg"></div>

    </div>

    Having done that set the header div positioning to relative instead of absolute and change the tagline positioning:

    #tagline {
    position: relative;
    right:0;
    top: 0;
    background-image: url(images/tagline.jpg) no-repeat;
    }

    Hope that makes sense....
    •  
      CommentAuthornifkin
    • CommentTimeJun 8th 2006 edited
     permalink
    Totally unrelated but might make things easier on you: you could try removing the SPAN tags and moving your JS events directly onto the images. then you'd at least be able to save yourself some wear on yr fingers typing by using this.src='theimage.gif' instead of document.pic1.src='about_us_on.jpg'.*

    That's really just comes down to a personal preference thing in the end though.

    * caveat: I'm 90% sure this works, but it's very early and I still haven't had any caffeine.
Add your comments
    Username Password
  • Format comments as (Help)