CSS Code?
rsirota
Registered Users Posts: 111 Major grins
Now that I have my feet wet.. I need to do a little customization. In the old world I could just get one of the css developer tools and hover over the item I want to customize to get the css link .sm-xxx etc. I see to be having a problem in the new world with this.
What I want to do is on page x and only page x change the font color of a menu that I have put on page x. Page y has a menu too but It can have the system settings...
So I need something like
.sm-mymenu {
color: white;
}
Any suggestions to get the css of this particular item? I will want to customize other special items too...
What I want to do is on page x and only page x change the font color of a menu that I have put on page x. Page y has a menu too but It can have the system settings...
So I need something like
.sm-mymenu {
color: white;
}
Any suggestions to get the css of this particular item? I will want to customize other special items too...
Rob Sirota
Web: www.robsirotaphotography.com • www.k9-pix.com • www.rsirota.com
Nikon... All Nikon (D4/D810/Dƒ)
... OK I do have a PhaseOne 645DF+ w/IQ250
Web: www.robsirotaphotography.com • www.k9-pix.com • www.rsirota.com
Nikon... All Nikon (D4/D810/Dƒ)
... OK I do have a PhaseOne 645DF+ w/IQ250
0
Comments
#yui_3_8_0_1_1377576070984_390" .sm-page-widget-nav .sm-page-widget-nav-popover.sm-page-widget-nav-horizontal .sm-page-widget-nav-toplink {
color: white;
}
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Instead, the stable page ID classes that SmugMug generate look like "sm-page-node-7ia2z" and you can find them applied to the body tag, so you can do something like:
Those IDs should stay the same indefinitely.
Please check out my gallery of customisations for the New SmugMug, more to come!
the body class of children do not carry the parent/s "node" class. This makes it impossible to apply
CSS at any level and have it flow down.
My Website index | My Blog
I didn't know that. Then again I never tried to do that for one page.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Yeah, I only investigated the YUI ids because I was hoping to use them as a source of random numbers, but unfortunately because they get added so late, I couldn't!
Please check out my gallery of customisations for the New SmugMug, more to come!