- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Freelance Web Developer
- PC Specs
- Windows XP PRO Intel Core Duo E8500 4 GB DDR2 RAM ATI Radeon 4350 1 TB Hard Drive
18 Posted Topics
Re: You could also use a liquid layout that will shrink and stretch to whatever screen resolution. this is the code that I use: [CODE=css] *, * focus { outline: none; margin:0; padding:0;} body { font-family: "arial", "tahoma", "verdana"; font-size: 62.5%; color: #000; line-height: 180%; margin: 0 auto; padding: 0; text-align: … | |
Re: You can view XML as a lightweight database where you can store data in an xml file, I believe that the w3schools tutorial uses a cd collection for its tutorial. an XML file on its own won't do anything just as a database on its own won't do anything but … | |
Re: Hi, You can learn all about HTML and CSS from here [url]http://www.w3schools.com/html/default.asp[/url] Good luck out there | |
Hi folks, I apologize if this is a strange question for this forum beforehand. I recently set up a contact form for a client and a user has entered their email address incorrectly into the form and now my client can't get in touch with the enquirer and may lose … | |
Re: Hi, Its difficult to know what your problem is without seeing any code. Do you have a height set on your menu? If you have then remove the height and your menu will grow vertically to fit your menu items. If you don't want your menu to grow then you … | |
Re: Hi, Is this what you're after? I have changed what you see below. [CODE=html] div#navbar { position: absolute; top: 20px; padding: 0px; width: 980px; margin: auto; background-color: #5D2C2C; } div#navbar ul { float: right; padding: 0 10px 0; margin: 0; list-style: none; } div#navbar li { float: left; width: 75px; … | |
Re: Hi, You have anumber of errors in your code: On line 4 of your html doc you have: [CODE] {padding:0;margin:0;} [/CODE] on line 436 you have code which is not declared as a style: [CODE]position: relative; top: -5px; left: 2px;[/CODE] on line 442 you have an unencoded & in your … | |
Re: Hi, You should have no problems navigating from an html to aspx and vice versa. You should post your code in your post so that some one can have a look to see where you might have gone wrong. Cheers | |
Re: Hi Mindy Sue, You can learn how to use tables here [url]http://www.htmlcodetutorial.com/tables/[/url] Good luck out there | |
Hi Folks, I'm hoping you can help me with a strange IE problem. My clients site at [url]http://www.cmrbuilding.com[/url] works fine in Firefox, Safari, Opera etc but when it comes to IE, though it works in IE6, the site has a huge extra, blank area that scrolls to the right and … | |
Re: One way you could achieve this is by setting the left border of your wrapper to the same width as your nav class and then use positioning or negative margins in your nav class to overlay the border. [CODE=css] wrapper{ border-left:solid 200px #4c4c4c; } [/CODE] I haven't tried this myself … | |
Re: I'm pretty sure that if you stopped being a web.com customer a couple of days ago that your account, and all of your files, will have been deleted from their server. Do you not have a copy of your files on your local machine? If you don't I really think … | |
Re: Hi, I had a similar problem with a Jquery toggle container which I fixed by placing overflow: auto; inside the container and for good measure I created a class to clear the container: [CODE=css] .clear { clear: both; } [/CODE] and placed it under the container in my html [CODE=html] … | |
Re: Hi Sammer You are probably getting the overlap because your over use of absolute positioning. This takes each div element out of the natural flow of the document. It is better to use the document flow to position your divs. Here is the css code for your site using a … | |
Re: Hi fprollover is the code generated by Frontpage when creating rollover buttons hence th fp bit. That was doing my head in too so I found an article on it at [url]http://www.cadtutor.net/wb/fp/rollover/rollover.html[/url] | |
Re: Hi, You need to clear the footer div of the left and right floats in the left and right columns. [CODE=css] #footer{ clear:both; width:300px; background-color:#0F0; } [/CODE] The overlap happens because when you apply float to a div it removes that div from the Document flow hence the name float. … | |
Re: Hi, Just to let you know so that code is good you also have a number of other errors in your code: Line 10: link tag type should read "image/png" not "image.png" Line 54: The default scripting language hasn't been specified for the onclick event. Put this line of code … | |
Hi folks, I been asked to post data from a form to a msg broker system being tested by an external team. I have been told that all I should do is post the data using http request in the following format to a server. [code=javascript] var http =new HttpClient(); … |
The End.