Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K
~2K People Reached
Favorite Forums

16 Posted Topics

Member Avatar for rizvihaider72

If I was you I wouldn't bother about IE6, Microsoft doesn't support the browser anymore, so why should we as designers worry about it?

Member Avatar for inplainsite
0
113
Member Avatar for canterorist

the slide function in jQuery won't allow you to slide horizontally, only veritcally.. to slide horizontally you must use the animate function let's say you have a link and when you click it you want an image that is a child of the <a> tag to toggle slide.. here is …

Member Avatar for canterorist
0
188
Member Avatar for rusty813
Member Avatar for andrewliu

that is a heavy code to something simple as a dropdown menu with slide.... [CODE]$(function(){ $('li.topLink ul').hide(); // DROP MENU $('li.topLink').hover(function(){ $(this).find('ul').slideDown().css({'left':left}); },function(){ $(this).find('ul').hide(); }); });[/CODE] that's how I would write a dropdown menu with hover... to add a background to the parent link just add in the first hover …

Member Avatar for Bestwebdesign
0
200
Member Avatar for gyannitin

so basically what you want is a drop down on click? JavaScript is still a bit tricky for me, but here is what I would do with jQuery html [code] <ul id='dropDown'> <li><a href="#"> section A </a> <ul id='subMenu'> <li><a href="#"> section B </a></li> <li><a href="#"> section C </a></li> <li><a …

Member Avatar for gyannitin
0
145
Member Avatar for shadowscape

is this your website [url]http://shadowscape.co.uk/[/url] ? cause if it is, you already have a navigation on it.

Member Avatar for shadowscape
-1
147
Member Avatar for cj333

take the eq() out? that way you'll have all three paragraphs. if you only want the first two to show up, just write. [CODE] $('p:last').hide(); [/CODE] if you want the middle one to hide, write [CODE] <div id="content"><p>aaa</p><p>bbb</p><p>ccc</p></div> $('div#content').find('p').eq(1).hide(); [/CODE] you can go [URL="http://www.jsfiddle.net/VzZfJ/"]here[/URL] and play with this. hope this …

Member Avatar for bvelez352
0
100
Member Avatar for isalano

This makes no sense. CSS is a web designing language.. You mean CS5 and distributing CS5 without permission is illegal. So I don't think this is the best place to come asking for this.

Member Avatar for isalano
-2
141
Member Avatar for Blazar
Member Avatar for LogicWeb
Member Avatar for gikonyo

Best contrasting colors are colors oposite in the Color Wheel.. so yes, blue and orange are good contrasting colors

Member Avatar for gikonyo
0
66
Member Avatar for Acute

The effects must be set up after the prepend and make sure the you set the class in the prepend function I.E. [CODE] $('body').prepend("<div class='className'>blah blah blah </div>"); $('div.className').... [/CODE]

Member Avatar for bvelez352
0
66
Member Avatar for shruti sepra

Have you tried adding the fonts via CSS? if not, do it like this: [CODE] @font-face { font-family: Arial; font-style: normal; font-weight: normal; src:url(http://www.SiteAddress.htm/EOTfileName.eot); } [/CODE] the only bad thing about using external fonts is that the user will have to wait until the font is downloaded before he/she can …

Member Avatar for bvelez352
0
120
Member Avatar for LogicWeb

maybe set up a height for the input? I just looked at the webpage in Safari, firefox and chrome (i'm on a Mac so no IE) and it looks just fine...

Member Avatar for bvelez352
0
79
Member Avatar for 612wharfavenue

this is why I don't even bother with JavaScript.... this is a simple effect that could be achieved by using jQuery. You might want to try that

Member Avatar for bvelez352
0
88
Member Avatar for andrewliu

[CODE] <ul> <li>home</li> <li class='downservices'><a href="#">Dropdown link</a> <ul> <li>links</li> <li>links</li> </ul> </li> </ul> [/CODE] jQuery [CODE] $(function(){ $('li.downservices').find('ul').hide(); $('li.downservices').hover(function(){ this.next('ul').slideDown(); }, function(){ this.next('ul').hide(); }); }); [/CODE] if you want a more detailed tutorial, I wrote a blog post [URL="http://onebiginternet.com/2011/01/how-to-create-a-drop-down-menu-using-jquery-and-css/"]here[/URL]

Member Avatar for bvelez352
0
164

The End.