Substitute Characters in SmugMug Gallery Style
avman
Registered Users Posts: 60 Big grins
Is it possible to replace the carot characters (< >) in SmugMug Gallery Style with theses ( ► ◄ )?
Thank You ......Tom
I really don't have anything nifty to say so I will remain quiet and observe!
Tom
http://avman.smugmug.com/
Tom
http://avman.smugmug.com/
0
Comments
Not that I can see. Those carots (< >) are fonts. Smugmug doesn't have pointers included. If you add the ASCII characters like this:
It will display the ASCII code and NOT the pointers.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Thank you Mike!
.sm-user-ui .sm-fonticon-AngleBracketLefttSlim::before {
content: '\◄';
}
I found that replacing '\►'; with '\◄'; accomplishes what I desired.
How the up & down carrots be changed?
.sm-user-ui .sm-fonticon-AngleBracketUpSlim::before {
content: '\▲';
}
doesn't appear to be working
Tom
Tom
http://avman.smugmug.com/
I use 'Notepad++' to do any coding. If I copied the characters into Notepad++, it strips them and I get this instead:
?
. I never tried to copy it unto Smugmug's pages direct. Glad it worked.Can you post a link to a page that uses the 'Up/Down' arrows you want to change?
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Try:
.sm-user-ui .sm-fonticon-AngleBracketUpSlim::before {
content: '\e01e';
}
Dave