2 questions about New Smugmug

ElyEly Registered Users Posts: 71 Big grins
edited March 2, 2014 in SmugMug Customization
Hi, I am still working on my New Smugmug before publishing it. There are 2 things I can't fix to make it look like my Legacy. I cant seem to find any other thread talking about it so here there are:

-how do I hide the Owner Buy button from the Galleries?

-how do i change the colour of my links/emails etc?
I set the Accents colour to #cc0000 (red) but it doesnt work
I then added the CSS that I also have on my Legacy

.myLink {color: #cc0000;}
.myLink:hover {color: red;}

.myEmail {color: #cc0000;}
.myEmail:hover {color: red;}

but still everything is white like all the other texts

Does anyone know what I am doing wrong?

My website is eleonoracollini.com but I havent published the New Smugmug yet so not sure you can see it

Thanks!!

Comments

  • denisegoldbergdenisegoldberg Administrators Posts: 14,373 moderator
    edited March 2, 2014
    The owner buy button only shows when you are logged in. Your viewers will not see it. If you have your photos set to be sold viewers will see the "buy" button (but not "owner buy").

    I use this CSS on my site (in my Theme css) to change the color of links plus add an overline, both only on hover:
    /* Adds hover effect to all links on site */
    a :hover, 
    a:hover {
      color: #19a791 !important;
      text-decoration: overline !important;
    }
    
    You should be able to adapt this for your needs.

    --- Denise
  • ElyEly Registered Users Posts: 71 Big grins
    edited March 2, 2014
    Many thanks!
Sign In or Register to comment.