Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K
~14.4K People Reached
About Me

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

Member Avatar for virtualmisc

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: …

Member Avatar for jerinjames
0
208
Member Avatar for UberJoker

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 …

Member Avatar for Cragdo
0
99
Member Avatar for Snowdiddy

Hi, You can learn all about HTML and CSS from here [url]http://www.w3schools.com/html/default.asp[/url] Good luck out there

Member Avatar for cfajohnson
0
115
Member Avatar for Cragdo

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 …

0
85
Member Avatar for K?!

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 …

Member Avatar for K?!
0
466
Member Avatar for beforetheyknew

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; …

Member Avatar for beforetheyknew
0
105
Member Avatar for Eva0607

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 …

Member Avatar for Eva0607
0
3K
Member Avatar for rikkie

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

Member Avatar for rikkie
0
86
Member Avatar for Mindy Sue

Hi Mindy Sue, You can learn how to use tables here [url]http://www.htmlcodetutorial.com/tables/[/url] Good luck out there

Member Avatar for Keith007
0
104
Member Avatar for Cragdo

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 …

Member Avatar for Cragdo
0
146
Member Avatar for lordcamel

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 …

Member Avatar for macneato
0
101
Member Avatar for rachelnetzer

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 …

Member Avatar for Cragdo
0
117
Member Avatar for richholt

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] …

Member Avatar for MidiMagic
0
99
Member Avatar for sammer021486

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 …

Member Avatar for Cragdo
0
9K
Member Avatar for rori

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]

Member Avatar for Cragdo
0
673
Member Avatar for samarudge

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. …

Member Avatar for Cragdo
0
97
Member Avatar for peepster

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 …

Member Avatar for Cragdo
0
101
Member Avatar for Cragdo

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(); …

0
139

The End.