- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
- Interests
- Web Hosting, HTML, CSS, PHP, computer hardware, computer software, Cisco, web design, web development,…
- PC Specs
- Mac OSX 10.6 Windows 7 iMac 25"+ MacBook Pro 15"+ AMD Phenom II X6 1090T Black Edition…
12 Posted Topics
Re: You can also change the color of the text and background by using the color command inside of DOS. Use color /? to see all options | |
Re: Can you launch/install other programs like process explorer? I can download a binary file so it will be able to run locally without any instillation. Also, you can download [URL="http://portableapps.com/apps/utilities/clamwin_portable"]ClamWin[/URL] which also runs locally on the computer too. It kind of sounds like you may have a virus/mlaware infection. Additionally, … | |
Re: That sounds like an interesting issue. Unless you have a static IP address which you purchased from your ISP, you shouldn't be able to access the internet without configuring your subnet mask and deafult gateway. When you plug directly into the modem you're still getting an IP address from your … | |
Re: I think that this: [url]http://www.amazon.com/HTML-XHTML-Bible-Steven-Schafer/dp/0470523964[/url] Is a great book. It's how I learned HTML and CSS all at once. It keeps them separate so you don't need to worry about getting confused between HTML and CSS. | |
Re: Can you provide a link? It's hard to give feedback for something we cannot see. | |
Re: Yes, give us some sample code. A big issue with IE is its box model and how weird it is. Sometimes there are issues with IE that cannot be fixed normally so you have to use a conditional comment for IE. [code] <!--[if IE 6]> Special instructions for IE 6 … | |
Re: It's a matter of preference really. Sometimes px is nice because you know the unit of measure and you don't necessarily need to make any calculations. Sometimes percentages are nice because it's generally a friendlier browser experience for "liquid" layouts. Large areas where you know you want the width to … | |
Re: Yeah, it's the scroll bar that you have on every page except links and contact. The only way to get around this is to either add a scroll bar on these pages using the overflow property in CSS or by adding additional content to these pages so a scroll bar … | |
Re: What is <div id="imgCaption"> inheriting as its width? What you have is the following: <img src="/images/java/Cubes.jpg" width="364" height="345" alt="Cubes" /> This means that the width of the image named Cubes.jpg is 364px. This attribute [B]only[/B] applies to the image itself and not the container. If you wish for <div id="imgCaption"> … | |
Re: You actually don't even need that. Use the text-shadow property: [code] text-shadow:[x-pos] [y-pos] [blur radius] [color]; text-shadow: 0px 0px 3px #fff; filter: Shadow(Color=#ffffff, Direction=135, Strength=5); /*IE HACK*/ [/code] The higher the blue radius is the more "glow" you'll get. Just be sure your x/y values are 0px. | |
Re: Did you check your proxy settings for IE? Tools > Internet Options > Connections > Lan Settings. The only box that should be checked is Automatically detect settings unless you have a proxy setup for some reason. Make sure you got all of these registry entries: [code]HKEY_CURRENT_USER\Software\[SET OF RANDOM CHARACTERS] … | |
Re: Try replacing/upgrading your RAM. If a system doesn't go through the POST test then it could be a dead RAM chip or DIMM slot. |
The End.