Web Design Forum: TUTORIAL: CSS image rollover - horizontal navigation - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting
  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

TUTORIAL: CSS image rollover - horizontal navigation A simple CSS rollover tutorial using only one image Rate Topic: -----

#1 User is offline   Ben 

  • Web Designer Forum Admin
  • View gallery
  • Group: Root Admin
  • Posts: 2,839
  • Joined: 24-August 06
  • Reputation: 100
  • Gender:Male
  • Location:Essex, UK
  • Experience:Intermediate
  • Area of Expertise:Web Designer

  Posted 14 October 2006 - 09:59 AM

Hi,

I have created a very simple and easy to configure CSS Image Rollover Tutorial that uses only one image so there's no loading times for the rollover states, resulting in smoother transitions.

It works by containing the normal and rollover states in one image, we simply use the css to move the image into it's hover state when a mouse is rolled over (see attached image). It's all controlled by ul and li html.

I have included a .zip containing the source with comments and the image used so you can see how it works and tweak it to suit your needs.

CSS Code:
<style type="text/css">

#navigation ul {
	width: 320px; 
	height: 30px; 
	position: absolute;
	top: 100px; 
	left: 300px; 
	background: url(menu.jpg) no-repeat 0 0;
	list-style: none;
	margin: 0; padding: 0;
}
#navigation li {
	display: inline;
}
#navigation li a:link, #navigation li a:visited {
	border: none;
	width: 80px; 
	height: 30px; 
	display: block; 
	position: absolute; 
	top: 0; 
	text-indent: -7000px;
	outline: none;
}
#navigation li.blue a:link, #navigation li.blue a:visited { 
	left: 0;
}
#navigation li.green a:link, #navigation li.green a:visited { 
	left: 80px 
}
#navigation li.orange a:link, #navigation li.orange a:visited { 
	left: 160px  
}
#navigation li.red a:link, #navigation li.red a:visited { 
	left: 240px  
}

#navigation li.blue a:hover {
	background: url(menu.jpg) no-repeat 0 -30px; 
}
#navigation li.green a:hover {
	background: url(menu.jpg) no-repeat -80px -30px; 
}
#navigation li.orange a:hover {
	background: url(menu.jpg) no-repeat -160px -30px;
}
#navigation li.red a:hover {
	background: url(menu.jpg) no-repeat -240px -30px;
}

</style>


HTML:
<div id="navigation"> 
	<ul>
		<li class="blue"><a href="#">Blue</a></li>
		<li class="green"><a href="#">Green</a></li>
		<li class="orange"><a href="#">Orange</a></li>
		<li class="red"><a href="#">Red</a></li>
	</ul>
</div>


Image: (Attached)

Live example: Click here

Easy as that! As I say the .zip contains comments within the stylesheet so you know what each element does.

Any questions let me know.

Hope you find a it useful :)

Attached File(s)


3

#2 User is offline   Eskymo 

  • Web Guru
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 2,433
  • Joined: 05-September 06
  • Reputation: 36
  • Gender:Female
  • Location:Fife, Scotland, UK
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 14 October 2006 - 11:43 PM

Great tutorial - saves me from writing one! I did mean to, but haven't had time!

the only thing I would change is adding outline:none; to the following:

#navigation li a:link, #navigation li a:visited {
border: none;
width: 80px; /** width of the button in active state **/
height: 30px; /** height of the button in active state **/
display: block;
position: absolute;
top: 0;
text-indent: -7000px; /** Removes li text from the screen **/
outline:none;
}

as this remove the annoying dotted outline you get around links - as you've indented the text by -7000px the dotted line goes right across the screen and I think it looks ugly - so I always use the outline:none; to remove this. Not sure if this has a bearing on accessibility though.
0

#3 User is offline   Ben 

  • Web Designer Forum Admin
  • View gallery
  • Group: Root Admin
  • Posts: 2,839
  • Joined: 24-August 06
  • Reputation: 100
  • Gender:Male
  • Location:Essex, UK
  • Experience:Intermediate
  • Area of Expertise:Web Designer

Posted 15 October 2006 - 09:13 AM

Hi Evie,

Thanks, I'v added the outline: none; style and it is still w3c compliant.

Have amended the code and re-uploaded the .zip

Thanks :)
0

#4 User is offline   Eskymo 

  • Web Guru
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 2,433
  • Joined: 05-September 06
  • Reputation: 36
  • Gender:Female
  • Location:Fife, Scotland, UK
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 15 October 2006 - 10:16 AM

cool - glad to help. The outline thing isn't necessary but does make things look better.
0

#5 User is offline   Northern Star 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 61
  • Joined: 13-October 06
  • Reputation: 0
  • Location:Cheshire, UK
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 15 October 2006 - 11:56 AM

Nice tutorial!
0

#6 User is offline   alt. 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 6
  • Joined: 14-October 06
  • Reputation: 0
  • Experience:Advanced
  • Area of Expertise:Coder

Posted 17 October 2006 - 07:30 PM

Interesting code :)
I knew about this technique, but i'd use separated images for each of the buttons.
Right now i use background rollovers, because i think it's just easyer, but this does load faster indeed.
Might swith, but with each link it's own image tho :p i think it would be easyer t edit that way.
0

#7 User is offline   link 

  • Forum Newcomer
  • Pip
  • View gallery
  • Group: Members
  • Posts: 23
  • Joined: 18-March 07
  • Reputation: 0
  • Location:staffordshire
  • Experience:Beginner
  • Area of Expertise:I'm Learning

Posted 23 March 2007 - 06:14 PM

got any more tutorials like this ??
it's really good!
0

#8 User is offline   Eskymo 

  • Web Guru
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 2,433
  • Joined: 05-September 06
  • Reputation: 36
  • Gender:Female
  • Location:Fife, Scotland, UK
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 23 March 2007 - 06:29 PM

If I had the time I would write a few...but too busy at the moment - what would you want tutorials on? If you list a few things you're interested in learning, then we can make tutorials that are actually wanted - hey lets start a tutorial request thread!
0

#9 User is offline   olivier 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 279
  • Joined: 22-February 07
  • Reputation: 1
  • Location:Colchester - UK
  • Experience:Intermediate
  • Area of Expertise:Web Designer

Posted 23 March 2007 - 06:37 PM

good idea :)
I'm up for that!

Oli
0

#10 User is offline   Ben 

  • Web Designer Forum Admin
  • View gallery
  • Group: Root Admin
  • Posts: 2,839
  • Joined: 24-August 06
  • Reputation: 100
  • Gender:Male
  • Location:Essex, UK
  • Experience:Intermediate
  • Area of Expertise:Web Designer

Posted 23 March 2007 - 06:42 PM

View PostEskymo, on Mar 23 2007, 06:29 PM, said:

If I had the time I would write a few...but too busy at the moment - what would you want tutorials on? If you list a few things you're interested in learning, then we can make tutorials that are actually wanted - hey lets start a tutorial request thread!


Great stuff, I think useful CSS tips and techniques that alot of us overlook, I always think back to the days when I was learning and what could have been useful.

I also think Graphics tutorials, could be simple as adding a gradient or a drop shadow etc or maybe some useful flash tips?

What do you think?


View Postolivier, on Mar 23 2007, 06:37 PM, said:

good idea :)
I'm up for that!

Oli



Great Stuff Olivier, always looking forward to your stuff :) You did some good Flash banners at work this week :)
0

#11 User is offline   olivier 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 279
  • Joined: 22-February 07
  • Reputation: 1
  • Location:Colchester - UK
  • Experience:Intermediate
  • Area of Expertise:Web Designer

Posted 23 March 2007 - 06:45 PM

thank you ben :Db:

as E said, I think it'd be cool to get some requests so we can write things that are needed and will get used :)
0

#12 User is offline   Eskymo 

  • Web Guru
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 2,433
  • Joined: 05-September 06
  • Reputation: 36
  • Gender:Female
  • Location:Fife, Scotland, UK
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 23 March 2007 - 06:55 PM

I've learnt a few cool CSS tricks recently so could write a couple of tutorials - if I get time this w/e I will.
0

#13 User is offline   olivier 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 279
  • Joined: 22-February 07
  • Reputation: 1
  • Location:Colchester - UK
  • Experience:Intermediate
  • Area of Expertise:Web Designer

Posted 23 March 2007 - 07:00 PM

Looking forward to it :)
0

#14 User is offline   Ben 

  • Web Designer Forum Admin
  • View gallery
  • Group: Root Admin
  • Posts: 2,839
  • Joined: 24-August 06
  • Reputation: 100
  • Gender:Male
  • Location:Essex, UK
  • Experience:Intermediate
  • Area of Expertise:Web Designer

Posted 23 March 2007 - 07:02 PM

Excellent stuff guys! Nice to get some developments, you will see i'v re-arranged the forums! :)

Looking forward to some tutorials. :) I too will do some Fireworks tutorials soon. :)
0

#15 User is offline   Wildo 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 152
  • Joined: 16-May 07
  • Reputation: 0
  • Location:Holland
  • Experience:Advanced
  • Area of Expertise:Coder

Posted 17 May 2007 - 08:38 PM

When I want to create image rollovers most of the time I use Dreamweavers method, I like the option to pre-load the hover images :)

Wildo
0

#16 User is offline   Ben 

  • Web Designer Forum Admin
  • View gallery
  • Group: Root Admin
  • Posts: 2,839
  • Joined: 24-August 06
  • Reputation: 100
  • Gender:Male
  • Location:Essex, UK
  • Experience:Intermediate
  • Area of Expertise:Web Designer

  Posted 17 May 2007 - 08:43 PM

Cheers, it's just a different take on your average rollover. Plus the hover effects are seamless and very smooth without having to pasue for image loads. :)

Glad you like.
0

#17 User is offline   Eskymo 

  • Web Guru
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 2,433
  • Joined: 05-September 06
  • Reputation: 36
  • Gender:Female
  • Location:Fife, Scotland, UK
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 16 October 2007 - 01:43 PM

ok - just to recap with the tutorial - if someone has images disabled as that's the way they view the web - some people do - your navigation buttons disappear and as your text is indeneted 7000px to the left the text doesn't appear either - how do you over come this? I'm trying to imrove my website at the moment for better accessibility and have unfortunately used the text indent thing on my navigation...this is ok if the style sheet is disabled as the text links appear, but if someone has images disabled there is no navigation visible.

Anyone have any ideas?
0

#18 User is offline   Sazzad 

  • Expert
  • PipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 622
  • Joined: 21-February 07
  • Reputation: 38
  • Gender:Male
  • Location:New York, New York
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 16 October 2007 - 01:55 PM

I can't wait for the release of the new CSS where we don't have to use images for the round corners. Very intimidating that they are taking their sweet time.

Eskymo said:

Great tutorial - saves me from writing one! I did mean to, but haven't had time!

Yea same here. I think I ignored writing a tutorial for all the basics of CSS since it can be found all over the web. I think some of us should gather and write one big tutorial.
0

#19 User is offline   Eskymo 

  • Web Guru
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 2,433
  • Joined: 05-September 06
  • Reputation: 36
  • Gender:Female
  • Location:Fife, Scotland, UK
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 16 October 2007 - 02:07 PM

that doesn't answer my question at all ???
0

#20 User is offline   DaveWoods 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 35
  • Joined: 14-August 07
  • Reputation: 0
  • Location:Derby UK
  • Experience:Web Guru
  • Area of Expertise:Designer/Coder

Posted 16 October 2007 - 03:13 PM

Eskymo - Try this example

http://www.sitepoint...mages-css-xhtml

It overlays the image over the top of the text and therefore is much more accessible. The only problem I can see with it is that the text may be cropped in the box if the text size is enlarged but it's still a better alternative to using negative text indent or negative absolute positioning.

Also, I'd advise against removing the outline on links as suggested earlier as this will cause problems with accessibility for users who don't use a mouse for navigation.

Some users may simply use a keyboard or other device for tabbing between links and this outline serves the purpose of displaying where the focus currently lies. Removing outline will make the site completely unusable for this set of users.

Hope that helps.
0

#21 User is offline   Eskymo 

  • Web Guru
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 2,433
  • Joined: 05-September 06
  • Reputation: 36
  • Gender:Female
  • Location:Fife, Scotland, UK
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 16 October 2007 - 03:20 PM

I know I've stopped using the outline:none for exactly that reason.

Thanks for the link - I will give that a go.
0

#22 User is offline   Sazzad 

  • Expert
  • PipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 622
  • Joined: 21-February 07
  • Reputation: 38
  • Gender:Male
  • Location:New York, New York
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 16 October 2007 - 04:20 PM

Oh sorry Eskymo, I didn't notice your post. I think we were typing our posts at the same time. I ran to class after I posted and therefore I could not. Dave Woods actually has a point. You may want to give that a go. I normally stay away from outline:none and use the wireframe menu, that allows flexibility. If you want a sample of my wireframe, you could take a look at it here: http://mahmedin.info/ (its the horizontal navigation under the title image).
0

#23 User is online   webchap 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 114
  • Joined: 16-October 07
  • Reputation: 0
  • Experience:Intermediate
  • Area of Expertise:Web Designer

Posted 29 January 2008 - 02:44 PM

Hi there, thanks for the great tutorial, however I am using it for a horizontal navigation bar across the top of a site and each button is a different width. I have created the graphic but can't see where to change the widths for each of the elements?

Presume this part of the CSS is stating that all the boxes should be 80px?

Quote

}
#navigation li a:link, #navigation li a:visited {
border: none;
width: 80px;
height: 30px;
display: block;
position: absolute;
top: 0;
text-indent: -7000px;
outline: none;
}


I have 5 buttons in total. Do I set the width for each one individually and then delete this width?

Any help most welcome.
0

#24 User is offline   ErisDS 

  • Evil Moderator
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 2,663
  • Joined: 16-January 08
  • Reputation: 25
  • Gender:Female
  • Location:Northants, UK
  • Experience:Web Guru
  • Area of Expertise:Web Developer

Posted 05 February 2008 - 08:15 AM

If you have the graphic all different widths then you will need to set the width of each button plus the left position of each button and the left position for the background image for the hover.


Perhaps for differing widths you should use a repeating background image for each li so it doesn't matter what the width is, or use the sliding doors technique instead?
http://www.alistapar...s/slidingdoors/
0

#25 User is offline   ErisDS 

  • Evil Moderator
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 2,663
  • Joined: 16-January 08
  • Reputation: 25
  • Gender:Female
  • Location:Northants, UK
  • Experience:Web Guru
  • Area of Expertise:Web Developer

Posted 30 March 2008 - 02:36 PM

Hi Guys,

Ben I hope you don't mind. I have been playing with your tutorial today and have created a vertical version.
Thought I'd share it as it's cool to have both in the same place.

I have removed outline:none per the discussion here.

The main change is to #navigation li :

which has changed from
#navigation li {
		display: inline;
}

to
#navigation li { 
	width: 80px;
	height: 30px; 
}


The rest of the changes are mostly changing width and heights and movements so that it goes in the right direction.
Effectively all settings for "left" and "top" are switched around, as we now want the hover to move right and down rather than up and left.

The zip file includes the HTML file and a re-oriented image. It's all Ben's work really :)

Eris

Attached File(s)


0

#26 User is offline   MolotovRuss 

  • Web Guru
  • PipPipPipPipPip
  • Group: Members
  • Posts: 1,336
  • Joined: 30-December 07
  • Reputation: 14
  • Gender:Male
  • Location:Liphook, Hampshire
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 21 April 2008 - 03:24 PM

Fantastic code, SO useful! :D
0

#27 User is offline   Seth 

  • Debugging the world of code one line at a time.
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 1,213
  • Joined: 18-February 08
  • Reputation: 8
  • Gender:Male
  • Location:Philadelphia-Metro, USA
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 21 May 2008 - 04:22 AM

Thanks Ben! This is really helpful! :lol: :yahoo: :good:
0

#28 User is offline   Ben 

  • Web Designer Forum Admin
  • View gallery
  • Group: Root Admin
  • Posts: 2,839
  • Joined: 24-August 06
  • Reputation: 100
  • Gender:Male
  • Location:Essex, UK
  • Experience:Intermediate
  • Area of Expertise:Web Designer

  Posted 21 May 2008 - 08:58 PM

No problem, glad it could be of use to you :)
0

#29 User is offline   zexez 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 33
  • Joined: 27-April 08
  • Reputation: 0
  • Location:Latvia
  • Experience:Intermediate
  • Area of Expertise:Designer/Coder

Posted 31 May 2008 - 06:30 PM

Thx Ben, and ErisDS, that was really helpful.

..but.. can one of the buttons be always pressed? Only with external css file?

edit: solution found
0

#30 User is offline   CSS_Yeti 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 8
  • Joined: 01-July 08
  • Reputation: 0
  • Location:Norfolk
  • Experience:Advanced
  • Area of Expertise:Coder

Posted 17 July 2008 - 07:41 AM

View PostEskymo, on Oct 15 2006, 00:43, said:

Great tutorial - saves me from writing one! I did mean to, but haven't had time!

the only thing I would change is adding outline:none; to the following:

#navigation li a:link, #navigation li a:visited {
border: none;
width: 80px; /** width of the button in active state **/
height: 30px; /** height of the button in active state **/
display: block;
position: absolute;
top: 0;
text-indent: -7000px; /** Removes li text from the screen **/
outline:none;
}

as this remove the annoying dotted outline you get around links - as you've indented the text by -7000px the dotted line goes right across the screen and I think it looks ugly - so I always use the outline:none; to remove this. Not sure if this has a bearing on accessibility though.


Using 'overflow: hidden' instead of 'outline: none' will shrink the dotted line to the correct size.

James
0

#31 User is offline   boblet 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 162
  • Joined: 16-August 08
  • Reputation: 4
  • Gender:Female
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 17 August 2008 - 10:22 AM

Pardon me if I am butting in in the wrong place... I can make rollovers, no problem, but I cannot figure out how to do the "change apperance to second image on click".. If you understand what I mean.
Here is the site, and what I need is the tabs to change to white when clicked. The rollovers only have two images.
0

#32 User is offline   MolotovRuss 

  • Web Guru
  • PipPipPipPipPip
  • Group: Members
  • Posts: 1,336
  • Joined: 30-December 07
  • Reputation: 14
  • Gender:Male
  • Location:Liphook, Hampshire
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 20 August 2008 - 05:56 PM

Hi boblet.

I think I can help you there, someone posted about this before and I've used the method ever since. Basically, you need to change your <body> tag to <body id="home"> on the home page, and on the "om" page change it to <body id="om">

Now, in your external CSS style sheet (styleEllen.css), you're going to need to create an id like this;

#home #menu .brolloverH {

background-position: -34px 0;

}


As you can see, now whenever a user is on your home page, the body tag will now be given the id "home", and that id home changes the appearance of your index.php link to appear as if it is always being hovered over.

Now you can duplicate this effect onto the rest of your links, for example;

#om #menu .brolloverK {

background-position: -20px 0;

}


I hope you understand what I've said, if not feel free to question!
0

#33 User is offline   boblet 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 162
  • Joined: 16-August 08
  • Reputation: 4
  • Gender:Female
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 21 August 2008 - 04:10 PM

MolotovRuss – you have been a big help! Many, many thanks!
0

#34 User is offline   Web Design Liverpool 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 34
  • Joined: 26-August 08
  • Reputation: 0
  • Location:North West
  • Experience:Advanced
  • Area of Expertise:Designer

Posted 26 August 2008 - 08:01 PM

Nice post. I've used similar stuff on previous design jobs, works well.
0

#35 User is offline   MolotovRuss 

  • Web Guru
  • PipPipPipPipPip
  • Group: Members
  • Posts: 1,336
  • Joined: 30-December 07
  • Reputation: 14
  • Gender:Male
  • Location:Liphook, Hampshire
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 28 August 2008 - 01:33 PM

View Postboblet, on Aug 21 2008, 17:10, said:

MolotovRuss – you have been a big help! Many, many thanks!


No problem :)
0

#36 User is offline   karankaran 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 5
  • Joined: 10-September 08
  • Reputation: 0
  • Experience:Nothing
  • Area of Expertise:Designer

Posted 10 September 2008 - 06:38 PM

View PostMolotovRuss, on Aug 28 2008, 14:33, said:

No problem :)



:) .. no need of doing or learnign this things :rolleyes: www.zimplit.org check this site will take to your levels
0

#37 User is offline   jasperng 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 7
  • Joined: 12-September 08
  • Reputation: 0
  • Experience:Nothing
  • Area of Expertise:Web Designer

Posted 12 September 2008 - 06:58 AM

hi ben, i wanna know what if i want to do a multi level dropdown menus ? .. using this code. . how can i amend it to make it a multi level ?
0

#38 User is offline   Sussex_Chris 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 153
  • Joined: 17-June 08
  • Reputation: 0
  • Gender:Male
  • Experience:Intermediate
  • Area of Expertise:Coder

Posted 13 September 2008 - 06:24 PM

Thanks for this, really cool!
0

#39 User is offline   Sam Christy 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 357
  • Joined: 23-August 08
  • Reputation: 0
  • Location:South London, England
  • Experience:Beginner
  • Area of Expertise:Designer/Coder

Posted 07 October 2008 - 04:25 PM

Thankyou very much, for a great tutorial. I can now solve the problem I had with links on my site! :D
0

#40 User is offline   janebush08 

  • Forum Newcomer
  • Pip
  • Group: Members
  • Posts: 4
  • Joined: 13-October 08
  • Reputation: 0
  • Gender:Male
  • Experience:Beginner
  • Area of Expertise:SEO

Posted 13 October 2008 - 11:54 AM

Very Nice tutorial... thanks for putting so much of efforts...
0

Share this topic:


  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

10 User(s) are reading this topic
0 members, 10 guests, 0 anonymous users