• ARCHIVES 
  • » Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

Pages: 12

Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

myparis
» FTalker
FTalk Level: zero
118
0
1969-12-31

Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use this trick for the advance mouse over effect and making an untypical horizontal list menu for your navigation by using css. [u][b]Overview[/b][/u] [b]Required Images to make this trick[/b] [b]Background image of the menu[/b] [img]http://i173.photobucket.com/albums/w76/myparis16/comments-author.jpg[/img] [b]Menu Item 1[/b] [img]http://i173.photobucket.com/albums/w76/myparis16/home.png[/img] [b]Menu Item 2[/b] [img]http://i173.photobucket.com/albums/w76/myparis16/msg.png[/img] [b]Menu Item 3[/b] [img]http://i173.photobucket.com/albums/w76/myparis16/kissme.png[/img] [color=#bbbbbb]_______________________________________________________________________[/color] The trick here is to shift the position of the background-image when the link is hover by using the background-position property: [img]http://i173.photobucket.com/albums/w76/myparis16/demo.gif[/img] [color=#bbbbbb]_______________________________________________________________________[/color] Lets start coding, In your html file insert this: [quote]<ul id="navi"> <li><a href="#" class="home">HOME</a></li> <li><a href="#" class="msg">MSG</a></li> <li><a href="#" class="kissme">KISSME</a></li> </ul>[/quote] The css part: [b]#navi[/b] This is the container of the menu, insert the main background image and set its position to relative [quote]#navi{ padding:0px; margin:0px; list-style:none; height:93px; width:490px; background-image:url("comments-author.jpg"); background-repeat:no-repeat; background-position:left top; position:relative; }[/quote] [b]#navi a[/b] The purpose of text-indent here is to hide the text [quote]#navi a{ text-indent:-1000%; position:absolute; background-position:left top; background-repeat:no-repeat; outline:none; }[/quote] [b]#navi a:hover[/b] This will shift the background-position of the menu items when hover from top to bottom [quote]#navi a:hover{ background-position:left bottom; }[/quote] Set each menu items: The width is specified depending on the width of background-image. While the height is divided by 2. Then set each top and left property for the effect of untypical horizal list menu [quote]#navi .home{ background-image:url("home.png"); width:82px; height:55px; top:30px; left:40px; } #navi .msg{ background-image:url("msg.png"); width:88px; height:50px; top:30px; left:180px; } #navi .kissme{ background-image:url("kissme.png"); width:112px; height:49px; top:40px; left:350px; }[/quote] [b]DONE[/b] [b][url=http://mark16.fileave.com/Friendster/tuts/advcss_mhover]PREVIEW[/url][/b] Reminders: To much effects and scripting in your profile makes it :thumbsdown: for me. Try not to focus on scripting, learn how to design a simple but unique page. Study first CSS.

Last edited by myparis (2008-05-24 13:58:54)

IbLizMutz
» FTalkAgent
FTalk Level: zero
2112
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

wow :o :o nice code guys thanks for sharing :thumbsup: :thumbsup: :thumbsup:
mudpoet
» FTalkAddict
FTalk Level: zero
393
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

tnx for sharing this tuturial... :D
babevian
» n00b
FTalk Level: zero
66
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

nice onE! I love it..... =)
loshang14
» FTalker
FTalk Level: zero
119
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

this is really cool... love it.. :thumbsup:
Ephemeral
» FTalkElite
FTalk Level: zero
4669
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

This is a nice anchor trick. My friend likes doing this technique in his developed pages. The use of a:hover techniques. :thumbsup:

Last edited by Ephemeral (2008-03-21 22:13:40)

myparis
» FTalker
FTalk Level: zero
118
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

yap.. this is an alternative of javascript in mouseover effects
func
» n00b
FTalk Level: zero
25
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

nice one bro thanx for sharing gonna try it now!=D=D
janz020
» FTalkAddict
FTalk Level: zero
322
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

yah cool..,=):thumbsup: keep it up!:thumbsup:
xyayx
» n00b
FTalk Level: zero
13
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

can i ask a question? where do i put the html? in a separate file? hmm.... how? :question:
soul23
» FTalkAgent
FTalk Level: zero
2118
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

cool thx for posting!
pearl_uk
» n00b
FTalk Level: zero
24
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

impressive :thumbsup: thanks for sharing another cool hoover techniques.
jhay087
» n00b
FTalk Level: zero
3
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

nice tweak. . . thanks for sharing. . . .
sdrane
» n00b
FTalk Level: zero
42
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

hmmm..... do you have soem codes except this?:paranoid:
micah_km
» FTalkAddict
FTalk Level: zero
507
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

i tried this tweak but it didn't work on my page... or maybe im just so dumb...oh well thnx for sharing ill just try this again till this works...
myparis
» FTalker
FTalk Level: zero
118
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

[b]@xyayx[/b]: you can upload it in any web hosting file such as ripway.com... [b]@soul23[/b]: tnx! [b]@pearl_uk[/b]: yah.. tnx too.. :) [b]@jhay087[/b]: tnx bro.. [b]@sdrane[/b]: uhmm nope.. this is only a guide how to do that trick.. you can try it on ur profile.. [b]@micah_km[/b]: ahm try it first on a html file, until you get the trick.. :)
stepdarn14
» FTalker
FTalk Level: zero
123
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

[font=trebuchet ms]Hey, I have a question:[/font] [font=trebuchet ms]What about this part?[/font] [font=trebuchet ms]Should I paste this in a [b]HTML[/b] File?[/font] [font=trebuchet ms]Where will I place my [b]HTML[/b] File? At the [b]CSS[/b] File or in [b]JS[/b] File?[/font] [quote]<ul id="navi"> <li><a href="#" class="home">HOME</a></li> <li><a href="#" class="msg">MSG</a></li> <li><a href="#" class="kissme">KISSME</a></li> </ul>[/quote] [font=trebuchet ms][u][b]EDIT[/u]:[/b] Without [b]Custom Banner with Navigation[/b], this will not work?[/font]

Last edited by stepdarn14 (2008-04-25 21:56:02)

eehjhay
» FTalkWhiz
FTalk Level: zero
2692
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

^ You can use the innerHTML to replace the default Friendster menu into your own menu. -- In addition, in order for this tutorial to be effective, the a:hover must be placed [b]AFTER[/b] the other anchor tags except for the active anchor. This is the proper arrangement if you will assign different properties on each pseudo-classes: a:link a:visited a:hover a:active But it is ok if you do this one, a { [i]some properties here[/i] } a:hover { [i]some properties here[/i] }
christiandelacruz
» n00b
FTalk Level: zero
86
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

thanks for sharing.. god bless
†breadz23†
» FTalkAddict
FTalk Level: zero
360
0
1969-12-31

Re: Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

nice trick.. :D
  • ARCHIVES 
  • » Hello again.. Last tutorial i showed you how to create a [url=http://theftalk.com/t24469-Custom-Banner-with-Navigation-%28UPDATED%29.html]Custom Banner With Navigation[/url]. Now you can use thi

Pages: 12

Board footer

© 2024 F Talk

Current time is 12:06

[ 12 queries - 0.042 second ]
Privacy Policy