Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #16.0K
Ranked #2K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

11 Posted Topics

Member Avatar for nateuni
Member Avatar for LCYmichelle

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 …

Member Avatar for LCYmichelle
0
270
Member Avatar for Chosen13

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]

Member Avatar for Chosen13
0
118
Member Avatar for BrianDickson

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.

Member Avatar for BrianDickson
0
254
Member Avatar for scaiferw

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 …

Member Avatar for tinimic
0
94
Member Avatar for billysim1

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

Member Avatar for billysim1
0
81
Member Avatar for PixelatedKarma

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 …

Member Avatar for PixelatedKarma
0
252
Member Avatar for Jansz36

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

Member Avatar for Jansz36
0
217
Member Avatar for Virangya

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 …

Member Avatar for tinimic
0
394
Member Avatar for PixelatedKarma

Try something like this: [CODE]<html> <head> <title>Height &amp; 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 …

Member Avatar for PixelatedKarma
0
114
Member Avatar for slowblob

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=

Member Avatar for tinimic
0
79

The End.