No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
19 Posted Topics
Re: 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 … | |
Re: This isn't CSS matter this is a host problem! You should contact the service provider. | |
Re: 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 | |
Re: 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 … | |
![]() | Re: 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... … |
Re: If you mean the first li item then the selector is [CODE]#menu .level1[/CODE] | |
Re: 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. ![]() | |
Re: Well you can apply [CODE] html{overflow:hidden;}[/CODE] | |
Re: 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! | |
Re: 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 | |
Re: 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. | |
Re: 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 . | |
Re: 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 … | |
Re: 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 … | |
Re: .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. | |
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 | |
Re: 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 … | |
Re: 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] | |
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 … |
The End.