Options

Substitute Characters in SmugMug Gallery Style

avmanavman 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/

Comments

  • Options
    Hikin' MikeHikin' Mike Registered Users Posts: 5,451 Major grins

    Not that I can see. Those carots (< >) are fonts. Smugmug doesn't have pointers included. If you add the ASCII characters like this:

    .sm-user-ui .sm-fonticon-AngleBracketRightSlim::before {
        content: '\&#9658;';
        }
    
    .sm-user-ui .sm-fonticon-AngleBracketLefttSlim::before {
        content: '\&#9668;';
        }   
    

    It will display the ASCII code and NOT the pointers.

  • Options
    avmanavman Registered Users Posts: 60 Big grins

    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

    I really don't have anything nifty to say so I will remain quiet and observe!

    Tom

    http://avman.smugmug.com/
  • Options
    Hikin' MikeHikin' Mike Registered Users Posts: 5,451 Major grins
    edited March 29, 2017

    @avman said:
    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

    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?

  • Options
    pilotdavepilotdave Registered Users Posts: 785 Major grins

    Try:
    .sm-user-ui .sm-fonticon-AngleBracketUpSlim::before {
    content: '\e01e';
    }

    Dave

Sign In or Register to comment.