Reputation Activity
-
Nullified got a reaction from Nillervision in How to add image that changes every few secondsThe below code is a snippet from what I use on my site to change fade in and out between id's at a specific number of intervals. It doesn't change the src of an image, but is easily done as well. This should give you the basis for what you need though. If you need more I can event comment the code for you explaining what each line does. This of course needs the jquery library.
<script type="text/javascript"> jQuery(document).ready(function() { var InfiniteRotator = { init: function() { var initialDelay = 2000; var initialFade = 3000; var intTime = 10000; var fadeTime = 2000; var currentItem = 1; var numberOfItems = 2; setTimeout(function() {$('#id'+currentItem).fadeIn(initialFade);}, initialDelay); var infiniteLoop = setInterval(function(){ $('#promo'+currentItem).fadeOut(fadeTime); if (currentItem == numberOfItems) {currentItem = 1;} else {currentItem++;} setTimeout(function() {$('#id'+currentItem).fadeIn(fadeTime);}, fadeTime); }, intTime); } }; InfiniteRotator.init(); }); </script> -
-
Nullified got a reaction from hostmedia in looking to move from bluehostI agree with that as well. One must rely on real reviews (word of mouth) and their own personal experience to be able to evaluate a company's worth. -
Nullified reacted to MMMedia in looking to move from bluehostFor that price I assume you're talking shared CPU and not dedicated?
It's all in the small print, when we spec a 2.4GHz VPS we mean you get a 2.4GHz core, not a share or burstable, it's your resource and only yours.
The AMD 16 core Opty', and whilst not on par with the latest Xeon for some tasks, makes for a great Virtualisation platform, but once you've built and racked the server around it you're talking the best part of 9-10k and that's just the 'box'.
So a first year hardware overhead of around £560-600 per core (client), now power it, cool it, SAN attach it, protect it, support it, manage it... the list goes on.
When people come to us expecting to pay £20 a month for a VPS I don't know whether to laugh or cry, other companies offering a similar service simply cannot be offering the same level of service.
OP this not a sales pitch, we're only appropriate to a certain level of client because we're niche (I prefer to call it premium) and pricey (I'd be the first to admit that).
-
Nullified reacted to jheg in How Do I Change Googles Description TextYou need to change the meta description in the head section buddy.
Place this in your head section.
<meta name="description" content="YOUR DESCRIPTION GOES HERE " />
-
Nullified got a reaction from welshhuw in Anchor Links Issuewrite your own code.... or just remove the name attribute.