[css-d] My layout needs your help

2009-03-13 Thread Kim Brooks Wei
Hi List Friends,

Here are the problems I'm having with my own site's layout. Perhaps 
you can help me resolve them.

My h1 doesn't appear inline as I want it to in the page's first paragraph.

Side navigation is giving me a bit of trouble. The content type 
scrolls up and down, but I want the navigation to stay in place in 
one spot on the page (like the tiger does). I tried a few ways to get 
this effect without success. The content type will need to indent on 
the right as it passes by the side navigation bars - as the bars 
protrude into the content type space.

Solutions accepted with gratitude. Be well!
Kimi

-- 
This email sent by
Kimi Wei
201-475-1854  |  k...@thewei.com  |  thewei.com
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] My layout needs your help

2009-03-13 Thread David Laakso
Kim Brooks Wei wrote:
 Here are the problems I'm having with my own site's layout. Perhaps 
 you can help me resolve them.


 Kimi

   

Link?




-- 

A thin red line and a salmon-color ampersand forthcoming.
http://chelseacreekstudio.com/

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] My layout needs your help

2009-03-13 Thread Christian Kirchhoff
The link is mentioned in the footer: thewei.com

Best regards,

Christian
*Editura Gesellschaft für Verlagsdienstleistungen mbH*
Tempelhofer Damm 2 · 12101 Berlin
www.editura.de
AG Berlin-Charlottenburg · HR B 81823 · USt.Id. DE217180548
Geschäftsführer: Ralf Szymanski


David Laakso schrieb:
 Kim Brooks Wei wrote:
   
 Here are the problems I'm having with my own site's layout. Perhaps 
 you can help me resolve them.


 Kimi

   
 

 Link?




   
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] My layout needs your help

2009-03-13 Thread Bobby Jack

--- On Fri, 3/13/09, Kim Brooks Wei kimi@kimbwei.com wrote:

(The link's in the signature, David ;)

 My h1 doesn't appear inline as I want it to in the
 page's first paragraph.

Your h1 is inline, but your paragraph isn't.

 Side navigation is giving me a bit of trouble. The content
 type 
 scrolls up and down, but I want the navigation to stay in
 place in 
 one spot on the page (like the tiger does).

Note that your tiger image has a position: fixed. You'll want something 
similar for your #mainnav and you'll probably want to move that element's 
position in your source document, depending on exactly where you want it to 
appear on screen. As you say, you'll probably want to add some space for it by 
narrowing your body copy.
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] My layout needs your help

2009-03-13 Thread David Hucklesby
Kim Brooks Wei wrote:
 
 My h1 doesn't appear inline as I want it to in the page's first paragraph.
 

I think that you want h1 { display: run-in; } - but when I last looked,
only Safari and Opera supported it. I imagine you have tried display:
inline? FWIW I bailed and used h1 { float: left; width: whatever; } -
nasty. I know.


 Side navigation is giving me a bit of trouble. The content type 
 scrolls up and down, but I want the navigation to stay in place in 
 one spot on the page ...
 

Use { position: fixed; } for that. IE 6 does not support position:
fixed, so you may want to look at emulating it:

  http://www.gunlaug.no/contents/wd_additions_17.html

 Solutions accepted with gratitude.

Can you post a link?

Cordially,
David
--


__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/