Changing Color of Homeblock Gallery Link

Support Area Forums Selfie Changing Color of Homeblock Gallery Link

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question: http://www.connorhollinger.com
  • Author
    Posts
  • #19608
    Connor Hollinger
    Participant

    One of my home blocks right bottom corner is what and the white link that would take me to the gallery is unnoticeable so how would I change that color so people can see it?

    #19610
    Bill Robbins
    Moderator

    Hello Connor,

    It is possible to change the color there. Here’s how:

    1. Go to the Theme Options page and select the Advanced tab.
    2. Scroll down to the Custom CSS box and paste this:
      
      a.pop-open:before {
      	color: #ffffff;
      }
      
    3. Just replace the #ffffff with the color you’d like to use.
    4. Update your settings.

    That will change the color of the icon everywhere. If you need to change it just for one home block, you can do that. First edit the home block you’d like to change. Look up in the navigation bar of your browser. The URL should look something like this: http://themes.dev/selfie/wp-admin/post.php?post=22&action=edit . In it post=22 lets us know that the ID of that block is 22.

    We can take that and adjust our snippet above so it’s like this:

    
    #block-22 a.pop-open:before {
    	color: #ffffff;
    }
    

    with the 22 as the ID of our block. That way you can selectively change them. You could add one for each block if you wanted/needed to.

    If you run into any trouble with that, just let me know.

    Thanks,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Changing Color of Homeblock Gallery Link’ is closed to new replies.