Map this question

ecodocecodoc Registered Users Posts: 2 Beginner grinner
edited January 26, 2007 in SmugMug Support
Hello-

I set up my smugmug page where there are Header, Navbar, Slideshow on the homepage but no galleries on the homepage, and a separate page with the galleries.

My question is, I want to turn off the "map this" button on the homepage but not on the galleries page. I use the script below but then the "map this" button disappear from both the homepage and the galleries page. Is there a different script for what I want to do?

Thanks a bunch

/* turn map this button off */
.map_this {
display: none;
}

Comments

  • DavidTODavidTO Registered Users, Retired Mod Posts: 19,160 Major grins
    edited January 26, 2007
    ecodoc wrote:
    Hello-

    I set up my smugmug page where there are Header, Navbar, Slideshow on the homepage but no galleries on the homepage, and a separate page with the galleries.

    My question is, I want to turn off the "map this" button on the homepage but not on the galleries page. I use the script below but then the "map this" button disappear from both the homepage and the galleries page. Is there a different script for what I want to do?

    Thanks a bunch

    /* turn map this button off */
    .map_this {
    display: none;
    }

    Well, they're not scripts, it's CSS. :D

    I'm not an expert, but this should work:

    .homepage .map_this {
    display: block;
    }

    or something very much like that
    Moderator Emeritus
    Dgrin FAQ | Me | Workshops
  • ecodocecodoc Registered Users Posts: 2 Beginner grinner
    edited January 26, 2007
    It almost work
    Thank you DavidTo.

    It amost work with the script, I mean the CSS mwink.gif that you gave.

    I said "almost", because to make it works, I change the CSS to this

    .homepage .map_this {
    display: none;
    }


    Thanks!
  • DavidTODavidTO Registered Users, Retired Mod Posts: 19,160 Major grins
    edited January 26, 2007
    ecodoc wrote:
    Thank you DavidTo.

    It amost work with the script, I mean the CSS mwink.gif that you gave.

    I said "almost", because to make it works, I change the CSS to this

    .homepage .map_this {
    display: none;
    }


    Thanks!


    Oh, I should have read your post closer, I had it backwards, thinking you wanted to turn it back on for your homepage. Silly.
    Moderator Emeritus
    Dgrin FAQ | Me | Workshops
Sign In or Register to comment.