Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Nullified

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Nullified got a reaction from Nillervision in How to add image that changes every few seconds   
    The 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>
  2. Like
    Nullified reacted to Bomb in My logo   
    But not in any of your posts unfortunately.
     
    Gerruppa gerronupp!!
  3. Like
    Nullified got a reaction from hostmedia in looking to move from bluehost   
    I 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.
  4. Like
    Nullified reacted to MMMedia in looking to move from bluehost   
    For 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).
  5. Like
    Nullified reacted to jheg in How Do I Change Googles Description Text   
    You 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 " />
  6. Like
    Nullified got a reaction from welshhuw in Anchor Links Issue   
    write your own code.... or just remove the name attribute.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.