10,650 Topics
| |
Hi guys, I'm really new to web development and I need your help in getting my sample page modified. I've downloaded a sample drop down menu template and I just need it to modify to meet my needs. Attached is the files. Basically, I just need to do the following: … | |
A good day to you. I am working on a webpage but I got stuck on defining the max and min width. Basically I would want my page to be centered in when zooming out the webpages like what most webpages does. Please need expert help.ASAP thanks. this is my … | |
Dear Experts I have following codes [code]<html> <style type="text/css"> #menu { position:absolute; height:300px;width:200px; margin-left:60px;margin-top:50px; background:rgb(0%,100%,80%); font-family:arial; font-size:30pt;font-weight:18px; text-align:center;padding:20px;padding:10px; } #menu ul {margin:1px;} #menu ul li {display:block;width:140px;background:orange; font-family:arial; font-size:18pt;text-align:center;padding:1px;margin:1px;height:20px;text-decoration:none} #menu ul li a:link {width:140px;background:rgb(0%,80%,40%); font-family:arial; font-size:18pt;text-align:center;padding:1px;margin:1px;height:20px;} #menu ul li a:hover {background:#e3eeff;text-decoration:underline;padding:1px;margin:1px;height:20px;} #div1 { position:absolute; height:300px;width:200px; margin-left:280px;margin-top:50px; background:rgb(0%,80%,40%); font-family:arial; font-size:30pt;font-weight:18px; text-align:center;padding:20px; } … | |
Forumns, i got some boxes with a animation. You'll notice the last one of the line causes a rukus.. well these boxes will be contained in a flexible container so using a fixed width and using a clear on last item of row is not gonna solve this problem... check … | |
I just finished a site that list three zip codes as a service area. when the site is viewed in smart phone browsers the three zip codes become linked to Google maps or it tries to offer the zip as a call now phone feature. when the wrong zip is … | |
Hi everyone, I just had a quick question. I have a div that has text in it. What I want to have is some text in the left and some text in the right so inside the div, the text Hello is displayed on the left as soon as the … | |
hi everyone.. now i developin own site.. [url]www.parithi.com..this[/url] is a site home page having one wallpaper(background image)with that person name has been displayed transparent... how to do that..please refer that site...i attracted that design... please reply with solution | |
Hello, I have this issue that the input tag has a class that's the same as other input tag. I want to change the icon to something else but it affects the other input that's not related to the icon. I wonder if it is possible to create a css … | |
You can force a browser to report the size of a display: [CODE]<meta name="viewport" content="width=device-width">[/CODE] Which got me wondering if you can do something similar to report the type of internet connection a device is using (mobile data/ wifi) I ask as I am looking into reducing data download for … | |
Dear Experts I have following codes [CODE]<html> <style type="text/css"> #box1 { width:400px; height:400px; background:e3eeff; color:blue; padding:10px; text-align:center; margin-top:100px; margin-left:300px; vertical-align:middle; { </style> <body> <div id="box1"><h1>Div <br>with<br> four<br> border<br> images</h1></div> </body> </html>[/CODE] I want to apply attached images as border. For example bg_left.gif will be display on left border of div. … | |
View the innovative works in action at [URL="http://listenlight.net/13/"][B]http://listenlight.net/13/[/B][/URL]. Or by way of [B][URL="http://digg.com/programming/The_Listenlight_Text_Engine"]http://digg.com/programming/The_Listenlight_Text_Engine[/URL][/B], you may obtain the source under the very liberal MIT License. Cheers -- Jess | |
Hi, I'd like to create a Visio-style interface in one of my web forms; something like a mind map. The end goal is to enable a user to select a bubble, create as many branches from that bubble to new bubbles as they like, and from those bubbles to new … | |
Hi all, I do not know where to put these Thread , so I am hoping that you will answer me here . [URL="http://www.w3schools.com/js/tryit.asp?filename=tryjs_timing_clock"] http://www.w3schools.com/js/tryit.asp?filename=tryjs_timing_clock[/URL] I do not understand why these code display clock . Thank you for your effort of reading . | |
This site has lots of flash and text, visitors spend on average 5 or 6 minutes playing with the [URL="http://www.bigsand-steelband.co.uk/listen.html"]flash demo [/URL]and gallery App. How do I make the site compatible for smartphones? [url]www.bigsand-steelband.co.uk[/url] | |
hi m going to develop a web application for a brush manufacturing factory.m in design phase now. but as i m a beginner i dont have much knowlege about language to be used in that. can any one help me which language should i learn . php or java?? | |
Like, would a potential employer think badly of someone who had used tables for instance to structure the header and footer of their website? | |
I have just started web developing and have learned on how to code. But my site tend to be miserable when it comes to aesthetics,selection of fonts, Background and foreground color and such stuff. So what i want is some good books,tutorials,videos anything that can help. Thank you. | |
So I have implemented a CSS3 transition to scroll a wide image across the screen using this code [code] animation-name:scrolling; animation-duration: 20s; animation-iteration-count: infinite; animation-timing-function: linear; @keyframes scrolling { 0% { background-position: 0% 0%; } 100% { background-position: -2000px 0%; } } [/code] Works fine, but after 20 seconds it … | |
Dear Experts I have following codes [CODE]<html> <head><h1>Image and data in table column</h1></head> <style type="text/css"> .bg {widht:100%;height:100%} .al {text-align:center;} </style> <body> <table width="50%" height="100px" border="1" cellpadding='0' cellspacing="0"> <tr> <td widht="25%" background="DREAM.JPG" tabindex="2" title="The Code Project"><h3 class="al">Hello</h3></td> <td widht="25%" bgcolor=pink><h3>world</h3></td> </tr> </table> </body> </html>[/CODE] In column I want to stretch the … | |
Dear Sir, I have following Codes [CODE]<html> <style type="text/css"> #d1 {float:left; width:200px;height:200px; background-color:e3eeff; margin:20px 20px 20px 20px; padding:20px 20px 20px 20px; text-align:center; vertical-align:middle; letter-spacing:10pt;} .bg {width:100%;height:100%;position:absolute;z-index:-1;} </style> <body> <div id="d1"><img class="bg" src="dream.jpg" width=100 height=100%><h2>Hello world</h2></div> </body> </html> [/CODE] I want to know Why background image goes outside of div? I … | |
Hi everyone, Please help me in rounded border corners. I have generated rounded corner borders from site and it give me five images (four corners and one dot image files). I have set all corners according to that site's description HTML and CSS code. But I can't set bottom right … | |
we have done a video as part of the course work which explains about conceptual design for a small problem. I hope it might be helpful... here is the link.. [url]http://www.youtube.com/watch?v=k8JzkCq-5yA[/url] Thank you. | |
I have run into an interesting problem. I have inherited a database for daemon process that polls and accepts reports from remote embedded systems. Each site that has one of these systems can monitor over a dozen different fuel tanks. (In practice, most monitor 2, 3 or 4 tanks.) When … | |
My page [url]http://www.epicbasketball.com/p/events.html[/url] is kinda lookin pretty darn unprofessional. I'm limited in my coding skill, but am pretty good at learning new things quickly. If anyone out there could give me some advice, some tips, or would like to flat-out retouch the code below yourself, it would be HIGHLY APPRECIATED. … | |
I've got a domain-name that points to one IP When user types the domain name it should point to subdirectory's index.php When user type ip address it should open the index.php in root Anyone knows how to perform this? I've been using javascript top.location and even htaccess can't seem to … | |
Hello everyone. I am trying to publish a win projector (.exe) for a flash project using CS5.5 and Flash Player 11. I downloaded the following extension : [URL="http://blogs.adobe.com/rgalvan/2011/11/adding-fp11-support-to-flash-pro-cs5-and-cs5-5.html"]Flash Player 11 support for CS5[/URL] and therefore i can use Flash Player 11 in publish settings. When i publish swf and load … | |
hi web experts, i just want to ask is there a way to set the width and height property for the html input text box. I had this on a form, but how to set the width and height? is there a way to do it? <input name="time" type="text" class="inputbx" … | |
What is the right declaration for [CODE]target=_blank [/CODE]? I mean declaration in the headline of page. | |
Here what am trying to do is I created a unorderlist of 4 links. Link1 , link2 , link3 and link4. I created a new page for the unorderlist so that i can include it with php with include_once code in the main page. Actually what i want is when … | |
I have been trying to learn CSS for a while now. I have been working in C++ for quite some time now so i thought hey CSS should be a walk in a park but it has proved to be enormously difficult for me. The main thing that seem to … |
The End.