Reputation Activity
-
jacksaidwhat got a reaction from EATTHERICH in Mobile site questionYou could always set up a mobile landing page like this: http://buildinternet.com/2011/01/add-a-mobile-landing-page-to-your-site/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+buildinternet+(Build+Internet!)
...and offer buttons to view either full site or mobile site.
Here's a good way of switching stylesheets: http://www.alistapart.com/articles/alternate/
Hope that helps
-
jacksaidwhat got a reaction from james-harvey in HELP WITH DIV TAGS.box {float:left; background-color:red; width:17.9%; margin:10px; border:5px solid black;}
you might want to adjust your margin... depending on how many pxs you set your border is
-
jacksaidwhat got a reaction from David Cook in i need your helpyou'd need to paste that script into every page that you would like translated.
P.S. Don't forget to +1 Synjyn if he helped you out
-
jacksaidwhat got a reaction from David Cook in i need your helpHey,
Why not just use google translate? This script will display a banner to convert English to Welsh when the browser default language is Welsh.
<script> function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: 'en', includedLanguages: 'cy' }); } </script><script src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
More setting etc here: http://translate.google.com/translate_tools?hl=en&layout=1&eotf=1
-
jacksaidwhat got a reaction from pippin in Dim the screen without Javascript?Urgh, inline JS... touche!
Here's a much better example: 100% JavaScriptless
-
jacksaidwhat got a reaction from Georgew in photo to the url addressIf you're using the same icon across the whole site you don't even need to add anything to your HTML doc.
Simply save the ico as favicon.ico & chuck it in your root folder
-
jacksaidwhat reacted to empek in IE Problem - PositioningDid you try floating the li's instead of the a's?
Make sure the bg image is still applied to the a's.
-
jacksaidwhat got a reaction from charliesaidthat in Navigation bar with diagonalThis might help: http://www.dynamicdrive.com/style/csslibrary/item/slanted-divider-menu/
...and you could do something similar to this for the rollover: http://www.pmob.co.uk/Muller/hover/tab1.htm
-
jacksaidwhat got a reaction from RobertG in WordPress Cheat SheetThought some of you guys might find this useful:
All credit goes to the guys at quicklycode for this, some really useful sheets over there... definitely worth checking out.
You can download it in 2560×1600 from: http://www.quicklycode.com/wp-content/files/wordpress_helpsheet.jpg
-
jacksaidwhat got a reaction from nuksies in Google still picking up old pages etc even though removed from FTPOk, sorry, I may of misunderstood the situation a little.
Your website is already listed well, and as you do not have a lot of fresh updated content on your website there's no need to set the crawl rate so high.
On the other hand, it would be best to do this on your girlfriend's website as it may increase crawl rates through her site, therefore possibly decreasing the amount of time it takes google to recognise that your test pages are no longer there. But don't forget to turn this back down afterwards, as it can cause a high amount of traffic from crawlers.
I would recommend adding a robots.txt to your girlfriend's site and disallowing crawler access to /pbweb/. Also, if you are going to be doing further test-runs of sites in the future makes sure you always block crawler access to that specific test folder before uploading the files.
You could add a sitemap for her, it only takes a few minutes and it's not going to hurt.
-
jacksaidwhat got a reaction from pbul2004 in Google still picking up old pages etc even though removed from FTPOk, sorry, I may of misunderstood the situation a little.
Your website is already listed well, and as you do not have a lot of fresh updated content on your website there's no need to set the crawl rate so high.
On the other hand, it would be best to do this on your girlfriend's website as it may increase crawl rates through her site, therefore possibly decreasing the amount of time it takes google to recognise that your test pages are no longer there. But don't forget to turn this back down afterwards, as it can cause a high amount of traffic from crawlers.
I would recommend adding a robots.txt to your girlfriend's site and disallowing crawler access to /pbweb/. Also, if you are going to be doing further test-runs of sites in the future makes sure you always block crawler access to that specific test folder before uploading the files.
You could add a sitemap for her, it only takes a few minutes and it's not going to hurt.
-
jacksaidwhat got a reaction from mebo in rescaling in illustratorHey mebo,
Im using CS4, but it should be the same/similar on most versions:
Select the whole barcode.
Right Click > Transform > Scale
Options > Scale Stroke & Effects (tick the box).
Resize to your hearts content.
-
jacksaidwhat reacted to Harry69 in Cheapest place to buy .at TLD?Didn't even know that OVH have any abroad offices found this yesterday evening
https://www.ovh.co.uk/products/domain_tarifs.xml
-
jacksaidwhat got a reaction from mteam in Saving Files From A WebsiteKieranA has a very good point. If you have sensitive files on your server then you should use the following for launchdl.php:
<?php $file = $_GET['file']; if(preg_match('/^[a-zA-Z0-9_\-]+.vcf$/', $file) == 0) { print "Illegal name: $file"; return; } header ("Content-type: octet/stream"); header ("Content-disposition: attachment; filename=".$file.";"); header("Content-Length: ".filesize($file)); readfile($file); exit; ?>
Only .vcf files will be able to be downloaded, everything else will return "Illegal name: filename.whatever"
-
jacksaidwhat got a reaction from TylerCollins in Saving Files From A WebsiteCreate a new php file called launchdl.php, and insert the following code:
<?php $file = $_GET['file']; header ("Content-type: octet/stream"); header ("Content-disposition: attachment; filename=".$file.";"); header("Content-Length: ".filesize($file)); readfile($file); exit; ?>
Save it in the same folder as the webpage, and save your .vcf in the same folder too. In your html change the link to:
<a href="launchdl.php?file=INSERT FILE NAME HERE.vcf"></a>
Replace "INSERT FILE NAME HERE" with your filename.
Job done.
-
jacksaidwhat reacted to T_break in Icon search engineSomeone I am following on twitter, tweeted this link earlier, and I thought it was pretty good.
Its a search engine for icons, it gives license info too. Thought I would share.
Find it Here