Vote for BP.Net for the 2013 Forum of the Year! Click here for more info.

» Site Navigation

» Home
 > FAQ

» Online Users: 613

1 members and 612 guests
Most users ever online was 47,180, 07-16-2025 at 05:30 PM.

» Today's Birthdays

» Stats

Members: 75,905
Threads: 249,104
Posts: 2,572,108
Top Poster: JLC (31,651)
Welcome to our newest member, Pattyhud

Help from the CSS savvy?

Printable View

  • 11-09-2007, 08:55 PM
    MedusasOwl
    Re: Help from the CSS savvy?
    Consistently vanishing menu on scrolled down link click on Firefox, working fine on IE. :rolleye2:
  • 11-09-2007, 09:05 PM
    Nate
    Re: Help from the CSS savvy?
    What you're trying to achieve is such a PITA...that's why you don't see it too often. Cross browser compatibility is one of the most frustrating things in web development.
  • 11-09-2007, 09:19 PM
    iceman25
    Re: Help from the CSS savvy?
    Quote:

    Originally Posted by nathanledet View Post
    What you're trying to achieve is such a PITA...that's why you don't see it too often. Cross browser compatibility is one of the most frustrating things in web development.

    I've officially stopped supporting IE6 :banana:


    ... i wish!:rolleyes:
  • 11-09-2007, 09:28 PM
    Nate
    Re: Help from the CSS savvy?
    heh....i've stopped IE all together. i'm almost to the point where I want to set up a world wide boycott on every web site....where users that access a page are presented with a FireFox download... :)
  • 11-10-2007, 12:46 AM
    ctrlfreq
    Re: Help from the CSS savvy?
    Quote:

    Originally Posted by MedusasOwl View Post
    Sometimes now though when I click on a link after scrolling, the menu box vanishes... Is that a typo issue on my part, or just a glitch that will happen?

    It's a glitch, but one you can take care of. The reason the box is disappearing is because "absolute" position is based on the document, while "fixed" is based on the window. To take care of this, we need to tell IE to use "absolute" and everyone else to use "fixed". To do this, just update the "position: absolute;" on col1 & col3 to look like this:

    <!--[if IE]>
    position: absolute;
    <![endif]-->
    <!--[if !IE]>
    position: fixed;
    <![endif]-->
  • 11-10-2007, 12:49 AM
    ctrlfreq
    Re: Help from the CSS savvy?
    Quote:

    Originally Posted by iceman25 View Post
    I've officially stopped supporting IE6 :banana:


    ... i wish!:rolleyes:

    I am so right there with you...I would LOVE to stop supporting IE6, but on the game, 23% of our users use it (a serious pain since it's so ajax/dhtml heavy).
  • 11-10-2007, 04:53 AM
    MedusasOwl
    Re: Help from the CSS savvy?
    Done and done! :banana: I love it! Easy to navigate and aesthetically pleasing. :D Even got a favicon up there now (I'll try and make a better one another day, but its still cute for now).

    Thank you, thank you, thank you, thank you! :bow:

    I'm always surprised at how many people still use Internet Exploder. Drives me nuts that certain sites like Netflix view now etc won't work with anything else. Bleh. Catering to Exploder is a pain. Needing to find Exploder because a site doesn't care for superior browsers is a pain. Not as many of them around as there used to be though.
  • 11-15-2007, 05:28 PM
    MedusasOwl
    Re: Help from the CSS savvy?
    Ok, I've tried to fix this myself and am at a loss again, so just this last thing or two I swear and I'll let you guys alone, promise! :please:

    I assume the lightbox I use for the galleries is being messed with by the menu code. Ever since I fixed and validated all the pages, when you click on a gallery thumbnail it still works but sometimes it jumps all the way to the bottom of the page. The lower on the page the thumbnail, the further it jumps.

    http://www.bluegorgon.com/gallery.htm
    http://www.bluegorgon.com/snakegallery.htm

    The other thing seems to be that the menu is cutting off for some people, something about overflow. The one who told me about this is using a laptop, I don't know if that has something to do with it or not.

    :rolleye2:
Powered by vBadvanced CMPS v4.2.1