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.

~3K People Reached

19 Posted Topics

Member Avatar for samsnov

What you are talking of is called AUTO-SUGGEST or AUTO-COMPLETE and it's a AJAX request thing. Here are some tutorials and plug-ins [URL="http://ajaxdump.com/2010/08/11/10-cool-auto-complete-scripts-using-ajaxjquerymootoolsprototype/"]CLICK HERE[/URL] Probably you should create your own database of the desired auto-suggestion which are the web addresses and the names you're talking about putted in HTML links …

Member Avatar for Suetan
0
107
Member Avatar for s.w.a

This isn't CSS matter this is a host problem! You should contact the service provider.

Member Avatar for s.w.a
0
82
Member Avatar for hsmukunda

You have to clear the float! Try [CODE]#quick_search{zoom:1;}[/CODE] or [CODE]#quick_search .bottom{clear:right;}[/CODE] or both rules! In any case this is not cleared float somewhere, it might be a third element! If my solution doesn't help upload the page somewhere and let me give it a look I'll definitely help you. BR

Member Avatar for kidwon
0
97
Member Avatar for crunkie

Well I'm not sure that's possible! First copying anything from a web page is how your browser is made doing it! When it's about text all browsers support it but other data.... Second on other hand when placing the content in Outlook is how this application works and how interprets …

Member Avatar for fuston05
0
145
Member Avatar for JayGeePee

First it seems this ain't CSS problem and it belongs to the Web Development section but anyway I guess I can help you here. First save this file [url]http://code.jquery.com/jquery-1.4.3.min.js[/url] of Javascript libraries in the directory of your website and give it a path. Probably you've heard of Jquery but anyway... …

Member Avatar for Kraai
0
558
Member Avatar for apollokid
Member Avatar for ko ko
0
100
Member Avatar for PChuprina

I've tested in a pc and the font is working just fine! See it here [url]http://www.kidwon.net63.net/cute_animals/cute_animasl_cards.html[/url] Try it with Ipad/Iphone safari and come back with update on this matter.

Member Avatar for ingeva
0
624
Member Avatar for shuka79
Member Avatar for nikita.chandra

Don't you have some test web server to provide us with a link? When finding problem in such a big piece of code seeing things is quite necessary!

Member Avatar for drjohn
0
382
Member Avatar for NewOrder

well put it in a div with fix with! [CODE]<div class="text"> your text....</div>[/CODE] and in CSS use: [CODE]<style type="text/css"> .text{width:500px}</style>[/CODE] or whatever width suits you

Member Avatar for drjohn
0
134
Member Avatar for pakunoda

The problem isn't just in the css of your logo! Put both of all your HTML and CSS or even better a link to your webpage if Rade's solution doesn't help.

Member Avatar for Usernamex235
0
92
Member Avatar for tyson.crouch
Re: HELP

Go to apache folder in xampp then conf folder open to edit httpd.conf ! if there's a line "Listen 8080" change it to 80! Also check is ServerName localhost:8080 , either .

Member Avatar for kidwon
0
98
Member Avatar for coliv

Do you have any experience with HTML and CSS? If so a DIV with the dark background is needed and inside of it a second one with the rounded corners background image - I'll called it "menu". Inside the menu place an unordered HTML with absolute CSS positioning in order …

Member Avatar for kidwon
0
87
Member Avatar for riverbay_media

This should help [CODE]ul{display:block; height: 50px; margin: 0px; padding: 0px;}[/CODE] The problem is that your list element [B]ul[/B] is the only one with no exact size so he plays on different rules :) There are different approaches when styling but mixing ways leads to unwanted results. Also I see that …

Member Avatar for riverbay_media
0
81
Member Avatar for teedoff

.back { background: #666; width: 1000px; margin: 3em 0 3em [B]2em[/B]; padding: 1.2em; } In this configuration that one ruins your centering, set it to zero and see it yourself.

Member Avatar for teedoff
0
160
Member Avatar for kidwon

Hey guys, Have you ever facing this bug in IE6 of body background image scaling? A png file repeating-x longer than the display and it's being scaled by IE6! Any ideas? 10x

Member Avatar for guyinpv
0
114
Member Avatar for Motorider

See if [CODE]#navigation p{float:left;}[/CODE] helps If not try adding [CODE]#navigation *{display: inline;}[/CODE] or [CODE]#navigation .inline {display: inline;} and give the <p class="inline">[/CODE] However the idea of the paragraph tag itself is a new line so why use such tag when instead [CODE]<span>West Hampden Avenue Denver Co XXX-000-X0X0</span>[/CODE] is a better …

Member Avatar for Motorider
0
115
Member Avatar for UncleJoe

I wish I could really help but I really don't have that kind of experience I'm the newbie mostly asking here. But not far I've seen some form jquery plug who disables/enables form field and even toggles. See if it fits you someway even by reorganizing your code behavior. [URL="http://plugins.jquery.com/project/disable"]http://plugins.jquery.com/project/disable[/URL]

Member Avatar for UncleJoe
0
214
Member Avatar for kidwon

Hi guys, This below is my code: [CODE]<script language="javascript" type="text/javascript"> function bc () { var bc = document.getElementsByTagName("BusinessCard"); for (var i=0; i < bc.length; i++) { var create_card = document.createElement("div"); create_card.setAttribute("class" , "BusinessCard" ); create_card.setAttribute("className" , "BusinessCard" ); document.getElementsByTagName("body")[0].appendChild(create_card); } } </script> </head> <body onload="bc()" > <BusinessCard> <Name>Somebody Somewhere</Name> <phone …

Member Avatar for kidwon
0
129

The End.