Skip to main content

Are you still looking for something?

Generic filters
Exact matches only
Filter by Categories
Customization
Domains
Lightroom Plugin
Tools and Tips

Try these: contact formbuttonbuy photos

Tag: css

Hiding SmugMug footer

I do not recommend doing this because you will then have to log in to your SmugMug account from SmugMug’s homepage. But if you decide that you still would like to hide the SmugMug footer from your SmugMug website – here is how to do this.Add a CSS content block to the ENTIRE SITE...

Continue reading

Hiding image titles, captions and keywords in mobile view

Sometimes you would like to hide captions, titles and keywords in mobile view only for more cleaner look. This code will allow you to hide all of this on mobile devices.Add a CSS content block to the ENTIRE SITE section of your website and then add this code to it:CSS/*Hiding gallery titles,...

Continue reading

Adding border to images in the new lightbox view

You can add a border to your images in the lightbox view. Just add a CSS content block { if you do not have one already } in the ENTIRE SITE section of your website and then add this code to it:CSS/*Adding border to lightbox image*/ .sm-user-ui .sm-lightbox-v2-photo { border: 4px solid black; }/*Adding...

Continue reading

Show full Gallery Titles

SmugMug shows only one line of gallery titles and some of you would like to show more.  Using this code you can display 4 lines of text below their gallery thumbnails.CSS/*-----Show full gallery titles-----*/ .sm-tiles-grid.sm-tiles-info-after .sm-tile-info-text { display: -webkit-box; ...

Continue reading

Replace the Custom Link icon with your own

You can add a custom link to the SOCIAL LINKS content block, but once added the link displays a simple link icon.  Some customers would like to use it to display a different icon – for example LinkedIn or Yelp etc. There are two versions of the code – one is for the CIRCLE icons and the...

Continue reading

Adding a label to the DOWNLOAD ALL button

You can add a label to the DOWNLOAD ALL button using a short CSS code, which needs to be added to ENTIRE SITE → CSS content block:CSS/*Adding the Download All label to the button*/ .sm-user-ui .sm-gallery-cover-download-button:after { content: ' Download All';}.sm-user-ui .sm-gallery-cover-download-button...

Continue reading

Adding a text label to the Slideshow button

You can add a custom label, which will appear on the side of the SLIDESHOW button using CSS code, which needs to be added to the ENTIRE SITE section → CSS content block:CSS/*Change the SLIDESHOW label*/ .sm-user-ui .sm-gallery-cover-slideshow-button:after { content: ' Slideshow'; } ...

Continue reading