Active buttons on front page

  • Unknown's avatar

    In fact i popped in an existing pic and its better

  • Unknown's avatar

    A friend has commented. If when you are at the page about ‘where to shop’. The button you’ve made “$$ BUY POP”S ART $$” – can that button then become active, at that page (with the pic of Nan and Pop looking at the gallery) to send someone in a new window to my etsy link?? My friend feels that when you get to that page you are inclined to click that button again. It’s no biggy but I thought I would ask since you are a guru :-)

    Or is that button always the link to the wordpress ‘buy pops art page’??

    BTW, I also have a an etsy widget of the art work

    script type=’text/javascript’ src=’https://www.etsy.com/assets/js/etsy_mini_shop.js’></script><script type=’text/javascript’>new Etsy.Mini(12606798,’thumbnail’,3,3,1,’https://www.etsy.com’);</script>

    Can that be used anywhere on wordpress??

    Warm Regards,
    Mark.

  • Unknown's avatar

    A friend has commented. If when you are at the page about ‘where to shop’. The button you’ve made “$$ BUY POP”S ART $$” – can that button then become active, at that page (with the pic of Nan and Pop looking at the gallery) to send someone in a new window to my etsy link?? My friend feels that when you get to that page you are inclined to click that button again. It’s no biggy but I thought I would ask since you are a guru :-)

    Or is that button always the link to the wordpress ‘buy pops art page’??

    BTW, I also have a an etsy widget of the art work

    script type=’text/javascript’ src=’https://www.etsy.com/assets/js/etsy_mini_shop.js’></script><script type=’text/javascript’>new Etsy.Mini(12606798,’thumbnail’,3,3,1,’https://www.etsy.com’);</script>

    Can that be used anywhere on wordpress??

    Warm Regards,
    Mark.

  • Unknown's avatar

    Id also like to know if there is anyway I can STOP people from downloading images or the larger saved images from my site? Is there a method of water marking??

  • Unknown's avatar

    Due to the way we did this, using Text Widgets, this gets quite complex as we have to have three text widgets. The two we have now and then another with the link that opens the etsy shop in a new window. We then have to hide the new on on all but the buy page, and hide the other on the buy page. It would be messy.

    What we can do though is to hide that button from the nan and pop art page and move the other button to the left. This would be the code to do that. Modify or replace the two media queries so they look like this

    @media screen and (max-width: 1000px) {
    	#text-3 {
    		top:100px;
    		margin-left:50px
    	}
    	#text-4 {
    		top:100px;
    		margin-left:300px;
    		margin-left:280px
    	}
    	.page-id-589 #text-4 {
    		margin-left: 150px;
    	}
    }
    @media screen and (max-width: 600px) {
    	#text-4 {
    		margin-left:50px;
    		top:160px
    	}
    	.page-id-589 #text-4 {
    		top: 120px;
    	}
    }

    and then add the following at the bottom of your custom CSS.

    .page-id-589 #text-3 {
    	display: none;
    }
    .page-id-589 #text-4 {
    	margin-left: 150px;
    }
  • The topic ‘Active buttons on front page’ is closed to new replies.