Page 1 of 1

New Website

Posted: Wed May 26, 2010 4:01 pm Etc/GMT-1+01:00
by craigmagee
Hey folks, just redone my website, its a bit of a work in progress really as I hate coding and picking images..
I've got some of my landscape stuff up on there at the mo, with architectural stuff to come soon.

Check it out, comments and thoughts welcome

http://www.craigmagee.co.uk

cheers

Craig

Re: New Website

Posted: Wed May 26, 2010 5:23 pm Etc/GMT-1+01:00
by Fourtoes
Loaded real quick in Firefox on my mac.

Look forward to seeing some more.

Re: New Website

Posted: Wed May 26, 2010 5:31 pm Etc/GMT-1+01:00
by Joanna Carter
Craig, your email address is in plain text in the html. Leaving it like this will attract lots of spam bots.

I use a small script to obfuscate the address on my site:

<script language="JavaScript">
<!-- Begin
user = "info";
domain1 = "grandes";
domain2 = "images.";
extension = "com";
document.write('<a href=\"mailto:' + user + '@' + domain1 + '-' + domain2 + extension + '?subject=Request%20Information">request information</a>');
// End -->
</script>

I can't remember the last time I got any spam to that address.

Re: New Website

Posted: Wed May 26, 2010 8:10 pm Etc/GMT-1+01:00
by craigmagee
Where the heck does that go Joanna??

I only just about understand HTML and CSS :D

Re: New Website

Posted: Wed May 26, 2010 8:31 pm Etc/GMT-1+01:00
by Joanna Carter
craigmagee wrote:Where the heck does that go Joanna??
Instead of the line that reads:

<div id="NumberBox">Tel - xxxxx xxx xxx - <a href="mailto:name@somedomain.co.uk">visible address</a></div>

… you need to do:

<div id="NumberBox">Tel - xxxxx xxx xxx -
<script language="JavaScript">
<!-- Begin
user = "craig";
domain1 = "craigmagee.";
domain2 = "co.";
extension = "uk";
document.write('<a href=\"mailto:' + user + '@' + domain1 + domain2 + extension + '?subject=Request%20Information">some message</a>');
// End -->
</script>
</div>
craigmagee wrote:I only just about understand HTML and CSS :D
Same here. But this is one thing I learnt early on to protect my inbox :wink:

Re: New Website

Posted: Wed May 26, 2010 9:30 pm Etc/GMT-1+01:00
by craigmagee
Well to be honest it was in plain text for about 3 years on the old site and never had a problem but I've put it in anyway

Cheer Joanna

Re: New Website

Posted: Wed May 26, 2010 9:41 pm Etc/GMT-1+01:00
by Joanna Carter
craigmagee wrote:Well to be honest it was in plain text for about 3 years on the old site and never had a problem but I've put it in anyway
You were fortunate then :D