Jump to content

emms

Privileged
  • Posts

    528
  • Joined

  • Last visited

About emms

  • Birthday 10/03/1981

Users Experience

  • Experience
    Intermediate
  • Area of Expertise
    Entrepreneur

Profile Information

  • Gender
    Female

emms's Achievements

Privileged

Privileged (4/6)

4

Reputation

  1. Hmmm, at least thats good, I checked in 9 Thx for reply by the way
  2. Any suggestions? http://wildlifetraveladventure.com/index.html Cheers, Emma
  3. If you look at the likes of BT infinity, do a search on google, the first thing you see in massive writing is "6 months offer , click on the link and you see the offer again in massive writing " 3 months free" - they seem to know what they are doing in terms of sales.
  4. Hi folks, The contact form on the homepage seems to work fine, but not on the inner pages, including the contact page - same code is used throughout. When you get to the input box 'where you would like to go' - it doesn't allow me to input text. Would love some help http://www.yourtoursni.co.uk/contact.html Cheers, Emma
  5. Hi Lyndsey, works a charm, thanks for that. Welcome to the forum by the way x
  6. Here is the link to the site www.gmrarchitects.com/ If you click on any of the photos, you will see that the social links appear in the photo (top right) plus some of the header, how can I fix this so that the header does not appear in the zoom? Thanks, Emma
  7. http://freshwebdesignni.com/a2b/about.html'>http://freshwebdesignni.com/a2b/about.html http://freshwebdesignni.com/a2b/ Thx
  8. Sliders.js /* Nivo Slider */ $(window).load(function() { $(".slider").nivoSlider({ effect: 'random', startSlide: 0, //Set starting Slide (0 index) animSpeed: 400, //Slide transition speed pauseTime: 3000, captionOpacity: 0.6, //Caption Opacity directionNavHide: true, //Only show on hover pauseOnHover: false, //Stop animation while hovering slices: 8 // For slice animations }); }); /* Coin Slider */ jQuery(document).ready(function() { $("#coin-slider").coinslider({ width: 940, height: 350, navigation: true, effect: '', links: false, delay: 3000, spw: 7, // squares per width sph: 7, // squares per height }); }); js/custom.js $(function(){ $("#menu li").hover(function(){ $(this).addClass("hover"); $('ul:first',this).css('visibility', 'visible'); }, function(){ $(this).removeClass("hover"); $('ul:first',this).css('visibility', 'hidden'); }); }); assets/js/custom,js /* 1 *** IMAGE ZOOM */ jQuery(document).ready(function() { $("a.zoom img").mouseover(function(){ $(this).stop(true,true); $(this).fadeTo(300, 0.6); }); $("a.zoom img").mouseout(function(){ $(this).fadeTo(400, 1.0); }); }); /* 2 *** SHOW MENU SEARCH $(document).ready(function() { $(".menu-search, .search-close").click(function () { $("#searchform").toggle("slow"); }); }); */ $(document).ready(function () { $('.menu-search, .search-close').click(function () { var $search = $('#searchform'); if ($search.is(':visible')) { $search.fadeOut(1000); } else { $search.fadeIn(1000); } }); }); /* 3 *** PORTFOLIO 4 SLIDING CAPTIONS */ $(document).ready(function() { $('.boxgrid.captionfull').hover(function(){ $(".cover", this).stop().animate({top:'-0px'},{queue:false,duration:200}); }, function() { $(".cover", this).stop().animate({top:'-145px'},{queue:false,duration:700}); }); }); /* 4 *** JMENU */ jQuery(document).ready(function() { $('#menu').jmenu({ animation:'slide', duration:300 }); }); /* 5 *** PAGE JUMP */ $('.jump').click(function() { var elementClicked = $(this).attr("href"); var destination = $(elementClicked).offset().top; $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 1000 ); return false; }); /* 6 *** FANCYBOX */ jQuery(document).ready(function() { //display image $("a.zoom").fancybox(); }); /* 7 *** LATEST TWEETS */ jQuery(window).load(function() { getTwitters('myTweets', { id: 'envato', // replace with your twitter user id prefix: '<a href="http://twitter.com/%...me%">%name%</a> said: ', clearContents: false, // leave the original message in place count: 2, withFriends: true, ignoreReplies: false, enableLinks: true, newwindow: true }); }); /* 8 *** TIPSY FOR REPLACING THE "TITLE" ATTRIBUTE VALUES */ jQuery(document).ready(function(){ $('a.tipsy').tipsy({ delayIn: 0, // delay before showing tooltip (ms) delayOut: 0, // delay before hiding tooltip (ms) fade: true, // fade tooltips in/out? fallback: '', // fallback text to use when no tooltip text gravity: 's', // gravity html: false, // is tooltip content HTML? live: false, // use live event support? offset: 15, // pixel offset of tooltip from element opacity: 0.8, // opacity of tooltip title: 'title', // attribute/callback containing tooltip text trigger: 'hover' // how tooltip is triggered - hover | focus | manual }); }); /* 9 *** JCAROUSEL */ jQuery(document).ready(function() { jQuery('.imageCarousel').jcarousel({ auto: 3, scroll: 1, wrap: 'last', animation: 700, initCallback: mycarousel_initCallback, buttonNextHTML: null, buttonPrevHTML: null }); }); function mycarousel_initCallback(carousel) { jQuery('.carousel-next').bind('click', function() { carousel.next(); return false; }); jQuery('.carousel-prev').bind('click', function() { carousel.prev(); return false; }); }; /* 10 *** Pika Choose */ jQuery(document).ready(function (){ var a = function(self){ self.anchor.fancybox(); }; $("#pikame").PikaChoose({ speed: 2500, buildFinished:a }); });
  9. Can someone plzzzz help. Why would these snippets of javascript be conflicting, stand alone they work fine) <!-- Js Starts --> <script type="text/javascript" src="js/jquery-1.4.2.js"></script> <script type="text/javascript" src="js/coin-slider.min.js"></script> <script type="text/javascript" language="javascript" src="js/custom.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#slider').coinslider({ width: 960, // width of slider panel height: 432, // height of slider panel spw: 7, // squares per width sph: 5, // squares per height delay: 5000, // delay between images in ms sDelay: 30, // delay beetwen squares in ms opacity: 0.7, // opacity of title and navigation titleSpeed: 500, // speed of title appereance in ms effect: '', // random, swirl, rain, straight navigation: true, // prev next and buttons links : true, // show images as links hoverPause: true // pause on hover }); }); </script> <!-- Js Ends --> <!-- Js Starts --> <script type="text/javascript" src="assets/js/sliders.js"></script> <script type="text/javascript" src="assets/js/custom.js"></script> <!-- Js Ends --> </body> </html>
  10. Guys, guys, always advertise your most basic package, draws customers in, they always want more on top.
  11. Hi folks, I have a logo in .gimp format, can anyone help me to convert to hi res format, transparent background, png for example? Roughly 400px in width. It wont allow me to send as an attachment here, but I could send via email no probs. Thanks in advance. Emma
  12. Just logged into WDF and saw this thread from years ago, my godness, things are going great at the mo with my splashy page )))
  13. I'm not even quite sure, I know its a Slideshow Plugin for jQuery, seems like it doesn't support multiple then.
  14. Hi Folks, I downloaded a free open source slider using jquery. See a snippet of code from HTML doc It works perfectly, but I need to implement 2 on the same page. I have tried loads of different things, but none seem to make it work. Is this possible, do I need to point the 2nd slider to a different js file or a different cs file, or do I need include another script in the doc <head> for the 2nd slider to work? See script below Cheers, Emma
×
×
  • Create New...