Smugmug update - Gallery title?
Allen
Registered Users Posts: 10,013 Major grins
Today I noticed that all my gallery titles in the breadcrumb are no longer the color they were yesterday.
Was there an update that makes my CSS no longer applicable?
Any other changes that might affect CSS?
This is what I had in "entire site".
.sm-user-ui .sm-breadcrumb-item h1 {
color: gold;
font-size: 28px;
}
Looks like .sm-breadcrumb-item was changed to .sm-breadcrumb
<li class="sm-breadcrumb" data-reactid=".0.0.$4"><h1 data-reactid=".0.0.$4.1">2015-12-08 SW Missouri</h1></li>
Was there an update that makes my CSS no longer applicable?
Any other changes that might affect CSS?
This is what I had in "entire site".
.sm-user-ui .sm-breadcrumb-item h1 {
color: gold;
font-size: 28px;
}
Looks like .sm-breadcrumb-item was changed to .sm-breadcrumb
<li class="sm-breadcrumb" data-reactid=".0.0.$4"><h1 data-reactid=".0.0.$4.1">2015-12-08 SW Missouri</h1></li>
0
Comments
--- Denise
Musings & ramblings at https://denisegoldberg.blogspot.com
As far as I can tell, at least from the page you linked, you've added the Consolas font somewhere, and it also looks like there's some clashing CSS that's causing some of your HTML blocks to not display, and mess up the font formatting of the page (just going into the customizer from there had some interesting fonts/colors). I can help debug if you'd like, just let me know!
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
No need. It was the usual problem: user error.
(If anybody want an explanation, here it is, but don't ask me to explain the explanation! The blocks on that page are HTML exports of CSS code from Notepad++, except I usually remove some inline CSS style information that Notepad++ "helpfully" writes. I forgot to do so this morning when I posted the update associated with the little sm-breadcrumb issue, and it caused all sorts of amusing conflicts.)
This is the code I previously used to change the name of the current page in the breadcrumb:
.sm-breadcrumb li:nth-child(3) h1 {
visibility: hidden;
position:relative;
}
.sm-breadcrumb li:nth-child(3) h1:after {
display:inline-block;
position: absolute;
top: 0;
left: 0;
content: "Explore";
visibility:visible;
}
Can you help get this working again? I like the /browse page to be called "Explore" and the /keyword page to say "Keywords" for example.
Dave
Looks like all you need to do is add an "s" to .sm-breadcrumb and change the 3rd child to the 2nd. Simple but super sneaky
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
This is what is was before the new Breadcrumb Content Block update.
/*enhance the last entry of breadcrumb */
.sm-user-ui .sm-breadcrumb-item h1 {
color: #fbd713;
font-size: 18px;
}
www.acecootephotography.com
Musings & ramblings at https://denisegoldberg.blogspot.com
Aaaahh Denise - my guardian angel again!
Worked perfectly!
Thankyou
www.acecootephotography.com
Thanks! I'll try that tonight.
Dave
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations