Peter Moore
(2 comments, 39 posts)
This user hasn't shared any profile information
Home page: http://www.pmlmedia.co.uk
Posts by Peter Moore
Google Chrome Extensions
0
Here is a quick list of the Chrome extensions that I use.
AddThis – Share & Bookmark (new) - Version: 2.0
bit.ly | a simple URL shortener - Version: 1.2.1.3
Chrome SEO - Version: 0.8
Docs PDF/PowerPoint Viewer (by Google) - Version: 3.1
Downloads - Version: 1
Eye Dropper - Version: 0.2.3
Firebug Lite for Google Chrome - Version: 1.3.1.7759
Google Chrome to Phone Extension - Version: 2.1.3
Google Docs - Version: 1.2
Google Mail Checker - Version: 3.1
Google Reader Notifier (by Google) - Version: 1.2
IE Tab - Version: 1.4.30.4
RSS Subscription Extension (by Google) - Version: 2.1.3
Send from Gmail (by Google) - Version: 1.11
SmoothScroll - Version: 0.9.8
StumbleUpon - Version: 2.9.8.1
Web Developer - Version: 0.3.1
Webpage Screenshot - Version: 5.0
Window Resizer - Version: 1.6.0
Welcome to AddThis for Chrome!
0Welcome to AddThis for Chrome!
Add This! great little Chrome Extension to share webpages and tweet/blog/email in lightening-fast time.
New Website Live: UKVauxhallSpares.co.uk
0
I’m pleased that the UK Vauxhall Spares website is finished and published today. The site uses HTML, PHP, JQuery and CSS3.
More content to be added in the next few months to coincide with an Online ad campaign.
Make a background image into a link or make the whole DIV clickable
0<div onclick="location.href='http:/ / pmlmedia.co.uk';" style="cursor: pointer;"></ div>
…or you could use this CSS trick which makes a background image into a link…
Add a hyperlink in the div somewhere to place a text link in your div…
<a href=’http://pmlmedia.co.uk’ title=’Professional Website Development’ id=’pmlmedia-logo’>PMLMEDIA</a>
…then set the id of the link to be a block element, set to display the background image and set the text of the link to indent way off the screen….
#pmlmedia-logo {
background-image:url(images/logo.png);
display:block;
height:58px;
text-indent:-9999px;
width:200px;
}
Fix Page Shift with Overflow-y: hidden
0Ever had your page layout shift down when your page loads before the elements snap back into position?
Fix this by adding the ‘overflow:’ or ‘overflow-y:’ property to the wrapper that contains your elements that are jumping around onLoad and use the value ‘hidden’ or ‘scroll’ to stop your browser automatically setting this to ‘auto’.
#navwrapper {Overflow-y:hidden;}
