Here is the URL I am trying to convert into CSS. http://www.ChatNFiles.com
Here is a URL that has something like what I am shooting for:
http://JewlerybyJulie.ChatNFiles.com But it is tables-based.
Is this even possible?
Tom
--
Who me? What signature?
I manage design and acquistion of data-driven websites at:
http://BlueCollar.ChatNFiles.com
Linkedin Profile: http://www.linkedin.com/in/tlgalenson
www.ChatNFiles.com has telnet chatting and more than 500,000 downloads
1. A valid doctype
2. A container with a defined width (div preferred by can be a table
specified in pixels, percents or ems)
3. Applied CSS selector with margin-left: auto; margin-right: auto.
Example:
#container {
width: 780px;
margin: 0 auto;
}
<div id="container">
<!-- whatever content you want on the page -->
</div>
BTW, please don't cross post to newsgroups that are on different servers.
Not being subscribed to whatever css newsgroup you had in your cross posting
made it difficult to respond.
--
Cheryl D Wise
http://by-expression.com
"Tom Miller" <tlgal...@sbcglobal.net> wrote in message
news:J9EMm.37708$Wf2....@newsfe23.iad...
Thank you.
Sorry, my mind is slower than light (make that mud) this afternoon.
That takes care of the positioning. My follow on question is how do I get
the background of the "container" to display "over the top" of the
background color command for the <body>?
Its making my head scratch.
Thanks,
Tom
body {
margin: 0;
padding: 0;
font-family: Tahoma;
font-size: 11px;
background-color: white;
color: #EAF5FF;
Then use the
"#wholepage {
width: 780px;
margin: 0 auto;
background-color: black;
}
trick. It sets up your page in the middle of the browser window with a
white border around the page! Just what I was shooting for.
So now I have everything but the question of letting the text flow and
"boxes" get narrower and upto the limit wider addressed. If I get stumped
here it STILL looks VERY nice!
Thank you Cheryl!
Most of this is covered in the free self paced material at
http://w3schools.com in then css material especially when you combine it
with the html material. I also cover some of A in the Basic website Tutorial
and other tutorials in the site shown in my signature.
--
Cheryl D Wise
http://by-expression.com
"Tom Miller" <tlgal...@sbcglobal.net> wrote in message
news:0hFMm.26783$ZF3....@newsfe13.iad...
> But, but, but..... They both are on my news server... but it hadn't
> occurred to me that if I were trying to read this from say the microsoft
> news server it would come back and byte me.
Most provider news servers are aggregates. Anything that is not microsoft.
will not appear here. It is not a huge issue, to me at least, but
newsreaders throw errors when you try to cross post back and don't have
access. ;-)
Peace and Grace,
Greg
--
Vote for Miranda's Christmas Story
http://tinyurl.com/mirandabelieve
Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com
*******************************************
| Think outside the box! |
*******************************************
I have been working through the CSS at w3schools but apparently I'm going to
have to go back to the html tutorial too.
A devolopers learning curve is never done <sigh>.