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: button

Mobile MENU button – transparent background

In this tutorial I am going to show you how you can make the MENU button, in the mobile version of your website transparent.Adding CSS code to your websiteLog in to your SmugMug account → click CUSTOMIZE → on the right panel, select ENTIRE SITE and add a CSS content block anywhere...

Continue reading

Changing the ‘BUY PHOTOS’ button colour

You can change the colour of the BUY PHOTOS button, which appears at the top of your gallery. Just add a CSS content block to your site and then add this code to it:CSS/* change Buy button color at the top */ .sm-gallery-cover-buy-button { color: #FFFFFF !important; /*This line controls...

Continue reading

How to hide the DOWNLOAD ALL button in your galleries

You can hide the DOWNLOAD ALL button, which appears at the top of your galleries using this CSS code:CSS.sm-user-ui .sm-gallery-cover-download-button { display: none !important; }CSSMake sure that you add a CSS content block to the ALL GALLERIES section of your site and then...

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