Follow me
To me it looks like this may be your first time here. If you like why not Follow me.
You might also like to find out a bit more about me
Making your Serps more useful in FFox
May 20th, 2009Went to see a mate of mine yesterday and was aware of the fact that they didn’t have an easy way to see where a site ranked in Google so thought id post my quick way of keeping track
To use these just drag them onto your shortcut bar in FFox
So it looks like the image below…
Then to use – do a Google search and click 100 results followed by the Result counter
You are just a CTRL+F away from finding your position then
SEO for SMF Forums, Some simple hacks
July 30th, 2008I have been doing some work over at my Affiliate Marketing Forum, Affearners. Minor tweaks really but I felt that they could be useful to anyone else with an SMF powered forum.
I would really like to spend some time ripping the whole thing to pieces as its all table driven and the code looks like someone threw it up, but instead of that mammoth task I did the lazy thing and tweaked it to get some benefits.
First off Affearners uses the SEO package created by Earl over at Syndk8 and I inherited that when I bought the forum. In my opinion it does a decent job of sorting the URL’s out but has some issues that perhaps newer packages dont (I dont wanna go through a complete URL migration so sod it it will do).
So first thing to sort is that the post pages dont even have a decent H1 title, so that should be easy to sort…
Open up dispaly.template.php (in your current forums theme folder) and change the following line: -
', $txt[118], ': ', $context['subject'], ' (', $txt[641], ' ', $context['num_views'], ' ', $txt[642], ')
And replace it with the following: -
', $context['subject'], '
Thats gotten rid of the crap we didn’t need in there and made the page title a nice H1.
Next the formatting may be a bit crappy for your forum so we may have to alter the CSS to sort that out. Heres what I did, open up style.css (Same folder as display.template above) and add this to the end of the stylesheet: -
/* seo hacks etc */
#top_subject h1 {
font-size: 16px;
line-height: 18px;
color: #ffffff;}
That just makes the title big but still fits in nice even if people do long stupid titles (Like I tend to
)
Thats it really, simple change really but I feel a lot happier about the what each page is saying about itself.
Adsense Tips – Greyscale sites convert better
July 5th, 2007Carrying on down the idea that its good practice to make those ads stand out as the best option for your visitor to click on I have done many sites where i limit the colour on the page to only being the ad. The links are hidden, the page text is grey and the ads are black and blue, the classic recipe to see your CTR soar!
Heres an example image I just knocked up: -
[photopress:greyscalesite.jpg,full,pp_image]
Update – for Keemo – heres the source code for the above
<code>
<style type=”text/css”>
<!–
body {
color: #999999;
font-family: Arial, Helvetica, sans-serif;
font-size: 9px;
background-color: #666666;
}
a:link {
color: #666666;
text-decoration: none;
}
a:visited {
color: #666666;
text-decoration: none;
}
a:hover {
color: #666666;
text-decoration: none;
}
a:active {
color: #666666;
text-decoration: none;
}
.style1 {
font-family: Arial, Helvetica, sans-serif;
color: #FFFFFF;
}
.style2 {font-size: 9px}
td {
font-size: 11px;
}
–>
</style>
<table width=”800″ border=”0″ align=”center” cellpadding=”0″ cellspacing=”1″ bgcolor=”#333333″>
<tr>
<td bgcolor=”#FFFFFF”><table width=”100%” border=”0″ align=”center” cellpadding=”6″ cellspacing=”6″>
<tr bgcolor=”#CCCCCC”>
<td height=”80″ colspan=”2″><div align=”right”>
<h1 class=”style1″>Burglar Alarms </h1>
</div></td>
</tr>
<tr>
<td width=”300″ align=”center” valign=”top”>SHOVE 1 ADSENSE AD HERE</td>
<td width=”458″ height=”774″ valign=”top”>Burglar (or intrusion), fire and safety alarms are found in electronic form today. Sensors are connected to a control unit via either a low-voltage hardwire or narrowband RF signal, which is used to interact with a response device. The most common security sensors indicate the opening of a door or window or detect motion via passive infrared (PIR). In new construction systems are predominately hardwired for economy while in retrofits wireless systems may be more economical and certainly quicker to install. Some systems are dedicated to one mission, others handle fire, intrusion, and safety alarms simultaneously. Sophistication ranges from small, self-contained noisemakers, to complicated, multi-zoned systems with color-coded computer monitor outputs. Many of these concepts also apply to portable alarms for protecting cars, trucks or other vehicles and their contents (i.e., “car alarms”). See also fire alarm control panel for specific fire system issues. Burglar alarms are sometimes referred to as alarm systems, see burglar alarm control panel for a discussion of hard-wired burglar alarm system design.<br>
Burglar (or intrusion), fire and safety alarms are found in electronic form today.
<p>Sensors are connected to a control unit via either a low-voltage hardwire or narrowband RF signal, which is used to interact with a response device. The most common security sensors indicate the opening of a door or window or detect motion via passive infrared (PIR). In new construction systems are predominately hardwired for economy while in retrofits wireless systems may be more economical and certainly quicker to install. Some systems are dedicated to one mission, others handle fire, intrusion, and safety alarms simultaneously. Sophistication ranges from small, self-contained noisemakers, to complicated, multi-zoned systems with color-coded computer monitor outputs. Many of these concepts also apply to portable alarms for protecting cars, trucks or other vehicles and their contents (i.e., “car alarms”). See also fire alarm control panel for specific fire system issues. Burglar alarms are sometimes referred to as alarm systems, see burglar alarm control panel for a discussion of hard-wired burglar alarm system design.</p></td>
</tr>
<tr bgcolor=”#EAEAEA”>
<td height=”40″ colspan=”2″><div align=”right” class=”style2″>Blah Blah</div></td>
</tr>
</table></td>
</tr>
</table>
</code>
Adsense Tips – CSS links
July 1st, 2007Ok so when you build or generate a page for Adsense and only for Adsense whats the aim of the page?
Click ! – Yup thats right you need the visitor to click and fuck off as soon as possible, whilst they are browsing they are eating bandwidth and the risk of them finding something useful to read is increasing.
Whats the best way to make sure that happens whilst remaining legal? What I do is make sure that my links arent easy to spot and i make sure that the ads are the brightest thing on the page.
More about making the ads stand out soon and more about making the page as dull as possible too but today we are just going to make the links dissapear via css.
I dont add navigation links in a list, mine are often just in the middle of the content and look like another paragraph of content. Heres the css I use to make them dissapear: -
<code>
<style type=”text/css”>
<!–
body {
color: #666666;
}
a:link {
color: #666666;
text-decoration: none;
}
a:visited {
color: #666666;
text-decoration: none;
}
a:hover {
color: #666666;
text-decoration: none;
}
a:active {
color: #666666;
text-decoration: none;
}
–>
</style>
</code>
More on why the text isnt black its dark grey another day but all your links have faded into the general content and your click happy visitor will be reading those ads with their finger on the money button
Hard disk test ’surprises’ Google
February 20th, 2007The impact of heavy use and high temperatures on hard disk drive failure may be overstated, says a report by three Google engineers. The report examined 100,000 commercial hard drives, ranging from 80GB to 400GB in capacity, used at Google since 2001. The firm uses “off-the-shelf” drives to store cached web pages and services. “Our data indicate a much weaker correlation between utilisation levels and failures than previous work has suggested,” the authors noted.
| Lower temperatures are associated with higher failure rates Google report |
About SEOidiot
Hi my name is Paul Madden and I am a UK SEO based in Lancashire, for years I have been cursed by the nickname SEOidiot which started life as a form of abuse from someone but you need to decide for yourself how accurate the term is.
Quotes about me
Joost De Valk
Wordpress Guru and SEO expert


