Columns Image Link

  • Author
    Posts
  • #37335
    Keith Smith

    Is there a way to have the Columns Image open in a new window. Love the theme.

    #37357
    Zed
    Cryout Creations mastermind

    Yes, with JavaScript:

    jQuery(document).ready(function(){
      jQuery('#front-columns a').each(function() {
           jQuery(this).click(function(event) {
               event.preventDefault();
               event.stopPropagation();
               window.open(this.href, '_blank');
           });
      }); 
    }); 

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Columns Image Link’ is closed to new replies.