- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
I am a retired industrial machinist and equipment troubleshooter. I have no previous HTML/CSS experience and have only limited exposure to other computer languages, but I am going to learn for the pure pleasure of learning something new. I plan to develop…
- Interests
- tinkering with anything mechanical
11 Posted Topics
Re: Try: [CODE]img { vertical-align: baseline; }[/CODE] | |
Re: Here's my approach to your design. I used HTML strict as a doctype because I am trying to learn to separate structural markup from CSS styling. I'm fairly new to both HTML and CSS (started learning in March), but here's my approach to your design: If you have any questions … | |
Re: Sorry, but 67 errors is too many to chase. [URL="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.stickmin.com%2FUser.php%3FID%3D1&charset=%28detect+automatically%29&doctype=Inline&group=0"]http://validator.w3.org/check?uri=http%3A%2F%2Fwww.stickmin.com%2FUser.php%3FID%3D1&charset=%28detect+automatically%29&doctype=Inline&group=0[/URL] | |
Re: Using your example: [CODE]h3 { background-color: #000; color: #fff; display: inline; }[/CODE] display:inline-block; is not supported in ie, but display:inline; seems to work in all I've tried. | |
Re: You can try something like this: [CODE]<html> <head> <style type="text/css"> <!-- .32 { line-height: 32px; margin: 0; } .72 { line-height: 72px; margin: 0; } .56 { line-height: 56px; margin:0; } #header { height: 160px; background-color:#CCC; } --> </style> </head> <body> <div id="header"> <h1 class="32">This is some text</h1> <p class="72">This … | |
Re: [QUOTE]It's a bit messy, I'll give you that, but the problem I am having is: when I use the above code, only the bottom level of links are clickable, the other two levels you can't click on despite the href code. Any thoughts?[/QUOTE] Your absolute positioned elements are overlapping. While … | |
Re: I'm new to html/css so I'd have to see the markup to figure out why this wasn't working. If you are giving your <body> element an id of #background, it should work, although there are a bunch of unnecessary properties included in your declaration. If the main container div for … | |
Re: You can disable all scroll bars in the browser with: [CODE]<body style="overflow: hidden;">[/CODE] Don't know why you would want to do that. If the average user (who surfs in a windowed browser) has a smaller window than your page they wont be able to scroll to see the whole page. … | |
Re: Here's a small table inside a div. Created in Dreamweaver CODE view. I added some extra CSS to show different methods of formatting the table cells. Hope this helps. [CODE]<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <style type="text/css"> <!-- #container { height: 300px; width: 500px; border: thin dotted … | |
Re: Try something like this: [CODE]<html> <head> <title>Height & Alignment Conundrum</title> <style type="text/css"> <!-- #wrapper { width: 100%; height: 100%; height: 100%; overflow: hidden; position: relative; } #topbar { height:25px; width:100%; border-bottom: #000000 1px solid; background-image:url(../images/topbg.png); background-repeat: repeat; background-position:top; } #site { height: 100%; width:70%; border-left: #000000 2px solid; border-right: #000000 … | |
Re: The id is case-sensitive. [CODE]<area shape="rect" coords="4,368,148,401" href="content.html" target="1Frame" id="Home" >[/CODE] targeting: [CODE]<iframe name="1frame" scrolling="no" id="1frame" src="content.html" width="850px" height="380px" frameborder="0"> your browser does not support Iframes</iframe>[/CODE] should be: [CODE]<area shape="rect" coords="4,368,148,401" href="content.html" target="1frame" id="Home" >[/CODE] as with all your target= |
The End.