We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 28033
    • 925 Posts
    http://symphonicheaven.com/

    Basically, I want to apply searchClose to the icon next to the search bar. Is this possible?
      My Snippets
      -> PopUpChunk v1.0
      • 28042 ☆ A M B ☆
      • 24,524 Posts
      Yes. The easiest way is to simply replace the original "close" icon with yours (ie change the name of your image and put it in the assets/snippets/ajaxSearch/images folder).

      The harder way is to hack the javascript to use your icon instead of the one it uses. I’ve done it, although I’m not all that great at javascript. It’s line 60 of the assets/snippets/ajaxSearch/js/ajaxSearch.js file.

          var c = new Element('img'); //Close Image
          c.setProperties({
             src: _base + 'images/cross.png', 
             alt: 'close search',
             id: 'searchClose'
          });
          c.addEvent('click', function(){closeSearch();});
      


      By the way, that’s turning into a really professional-looking site! There’s a typo in the last paragraph of your privacy policy, though.
        Studying MODX in the desert - http://sottwell.com
        Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
        Join the Slack Community - http://modx.org
        • 28033
        • 925 Posts
        The one issue I have is that the searchClose button appears either at the top-right of my site (due to position: absolute in a div w/ position: left), or if I change it to position:relative/etc., it’ll go below the results.

        Is there a way to hack the template so I can change where it’s placed?

        Quote from: sottwell at Aug 09, 2008, 11:38 PM

        By the way, that’s turning into a really professional-looking site! There’s a typo in the last paragraph of your privacy policy, though.

        Thanks. smiley And I’ll fix that typo likely sometime today, when I update next.
          My Snippets
          -> PopUpChunk v1.0
          • 28042 ☆ A M B ☆
          • 24,524 Posts
          And another in the next-to-last paragraph of your predecessor’s about section on the about page.
            Studying MODX in the desert - http://sottwell.com
            Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
            Join the Slack Community - http://modx.org