Re: [css-d] CSS Layout problems with Safari

2008-04-24 Thread David Laakso
lisa wong wrote: > Resubmitting with actual website with problems: > http://www.mattcolagiuri.com/home.html > Most of the pages show the menu on two lines (should be one line) and the > copyright and other text off a little bit. Thanks for looking at this! > > ~Lisa > > > >> >> I'm having layou

Re: [css-d] CSS Layout problems with Safari

2008-04-24 Thread lisa wong
Resubmitting with actual website with problems: http://www.mattcolagiuri.com/home.html Most of the pages show the menu on two lines (should be one line) and the copyright and other text off a little bit. Thanks for looking at this! ~Lisa On Wed, Apr 23, 2008 at 7:22 PM, lisa wong <[EMAIL PROTECT

[css-d] CSS Layout problems

2008-04-24 Thread bookpage
My first time to post and I hope I am asking in the correct way. I am have trouble trying to debug my CSS when there is an error between IE and FF. I have tried to use Firebug, but just can't seem to understand how to use it. There are several differences between IE and FF on this page http://

Re: [css-d] CSS Layout problems with Safari

2008-04-24 Thread David Laakso
lisa wong wrote: > Does anyone have any ideas on > what may be going on here? Or how to call a style-sheet for Safari only? I > now how to call one for IE and its different versions, but not finding > anything on safari. > > > ~Lisa > Put the page in question on a public server and point to i

[css-d] CSS Layout problems with Safari

2008-04-24 Thread lisa wong
Hi there, I'm having layout issues in Safari ver 3.1.1 on Windows, but not IE 7, FF, or Safari ver 3.04 on a Mac. In simple areas like this: #menu{ margin-top:55px; margin-left:300px; font-family: Papyrus; font-size: 14pt; color:#FF; width:475px; text-align: left; }

Re: [css-d] css layout issue, centered, three column layout

2008-03-05 Thread David Laakso
Brett Fuhs wrote: > I decided to make a centered 1000px layout, the centercontent is perfect..] > > I believe I need something with a wrapper, but I keep getting it more out of > order the more I mess with it, any suggestions? > > http://www.liaace.org > > > Brett > > Keep it simple. Avoid a

[css-d] css layout issue, centered, three column layout

2008-03-05 Thread Brett Fuhs
Hi, I am pretty new at web design and css. I started with a three-column layout that the center content stretched to fill the screen width, with left and rights static width of 200px. Which worked but I didn't want it to stretch. I decided to make a centered 1000px layout, the centercontent is p

[css-d] CSS layout question - content pushed down instead of scrolling right

2007-08-02 Thread Chris Kiltz
At first I thought I was dealing only w/ IE 7 issues, but a browser cam shot told me that I've got something funky going on... http://www.concertsinthepark.org/photo_gallery/2007_concerts/ fabulous_fairlanes_7-24.php On "normal" resolution (1024x) the slideshow is being pushed down the page b/c

Re: [css-d] css layout for college student paper

2006-07-20 Thread Christian Montoya
On 7/21/06, jaklitsch maya <[EMAIL PROTECTED]> wrote: > I guess my question boils down is there a limit of the > number of divs in the main content area. From my > research I have seen samples that seem to contain only > 2 or 3. Is there another way to organize the content. There's no limit to ho

[css-d] css layout for college student paper

2006-07-20 Thread jaklitsch maya
Hi, this is my first request. I just found you a few days ago. I am enjoying the digest, some of which I understand and some of which is straight over my head. I put my community college student newspaper on the web, and have for several years. It has been a great experience as I am a web design

Re: [css-d] CSS layout breaks in IE6 when window is narrow

2006-06-19 Thread Bob Easton
Debbie Campbell wrote: > I'm not sure what to call this problem... When you narrow the width of the > browser window far enough, the right-side div breaks and shows up below the > two left columns (green and blue) in IE 6. Doesn't happen in FF. > > http://www.parallaxwebdesign.com/projects/parall

[css-d] CSS layout breaks in IE6 when window is narrow

2006-06-19 Thread Debbie Campbell
I'm not sure what to call this problem... When you narrow the width of the browser window far enough, the right-side div breaks and shows up below the two left columns (green and blue) in IE 6. Doesn't happen in FF. http://www.parallaxwebdesign.com/projects/parallax_r2/ #content-right {

Re: [css-d] CSS Layout (Ben Liu)

2006-06-16 Thread Chaim
Hi Ben, Try using borders instead of background color - They print, and if there's no content in your li's, it should work. -Chaim __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hu

Re: [css-d] CSS Layout

2006-06-16 Thread Gunlaug Sørtun
Follow-up... >> http://www.viterbo.edu/proofs/CSSTest/index3.html The following margin-left/padding-left will probably work better and more consistently across browser-land... div#content ol, div#content ul {font-size .8em; margin-top: 1em; line-height: 1.4; margin-left: 0; padding-left: 18px; }

Re: [css-d] CSS Layout

2006-06-16 Thread Gunlaug Sørtun
Debra Kappmeyer wrote: > So, I took Dave's "friendly" advice to "learn CSS layout!" and am > trying to do that and attempting my very first (so keep that in mind) > CSS layout. It's looking alright :-) Just the usual IE-bugs in need of fixing... and a couple of "human bugs" that should be correc

Re: [css-d] CSS Layout

2006-06-16 Thread Ben Liu
Oh and you are missing a lot of tags too, perhaps Ed's recommendation should be addressed first, you seem to have some html code to fix first before the CSS can be addressed. On 6/16/06, Ben Liu <[EMAIL PROTECTED]> wrote: > Oops, sorry. Now that I look at your html, that CSS rule won't work > bec

Re: [css-d] CSS Layout

2006-06-16 Thread Ben Liu
Oops, sorry. Now that I look at your html, that CSS rule won't work because you don't actually have the child UL inside LI tags. Your code looks like this: To oversee all university academic policies To review chan

Re: [css-d] CSS Layout

2006-06-16 Thread Ben Liu
Hi Debra, I might be wrong about this but I think the reason that extra gap exists between the 4 and the A is because margin is being added twice, once in the ul and once for the li that contains it. I might be wrong about this because browsers collapse margins between elements sometimes. A rule l

Re: [css-d] CSS Layout

2006-06-16 Thread Ed Seehouse
On 6/16/06, Debra Kappmeyer <[EMAIL PROTECTED]> wrote: > http://www.viterbo.edu/proofs/CSSTest/index3.html > There's just a couple of problems You have a fair whack of errors in your html code. CSS is intended to work with valid html and errors in your html can really mess things up. You also

[css-d] CSS Layout

2006-06-16 Thread Debra Kappmeyer
So, I took Dave's "friendly" advice to "learn CSS layout!" and am trying to do that and attempting my very first (so keep that in mind) CSS layout. I think I've got it very close to where I want it for now: http://www.viterbo.edu/proofs/CSSTest/index3.html http://www.viterbo.edu/proofs/CSSTest/c

Re: [css-d] css layout issues [was--Does anyone use css with SSI?]

2006-04-25 Thread David Laakso
smithj7 wrote: > The page still needs some work. It is at: > > http://dbsdev.myflorida.com/hope.shtml > > I did not read what you wrote. Please see: Many captures: I am on to other things. HTH

Re: [css-d] css layout issues [was--Does anyone use css with SSI?]

2006-04-24 Thread smithj7
t agency in Florida state government to go tableless! I won't be able to do this without this group's continual support! You all have been very helpful! Thanks so much. -----Original Message- From: smithj7 [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 1:57 AM To: 'David L

Re: [css-d] css layout issues [was--Does anyone use css with SSI?]

2006-04-23 Thread smithj7
D] Css-Discuss. Org Cc: [EMAIL PROTECTED] Subject: Re: [css-d] css layout issues [was--Does anyone use css with SSI?] smithj7 wrote: > Now by footer works but content overlaps header. > http://dbsdev.myflorida.com/job_seeker/template.shtml > http://dbsdev.myflorida.com/newstyle.css > Best

Re: [css-d] css layout issues [was--Does anyone use css with SSI?]

2006-04-23 Thread David Laakso
smithj7 wrote: > Now by footer works but content overlaps header. > http://dbsdev.myflorida.com/job_seeker/template.shtml > http://dbsdev.myflorida.com/newstyle.css > Best bet may be to start with a layout that is known to work, and then plug your content into it. I'd suggest that you read, fol

[css-d] CSS layout browser problems, looks perfect in IE6, links included

2005-06-02 Thread Rob Robertson
the following site html file--http://www.ecisive.com/clients/FCCDHH/dev/index2.htm css file--http://www.ecisive.com/clients/FCCDHH/dev/css/sitestyle.css css driven layout. It looks perfect in IE6, in other browser it has various problems. Netscape, Opera, Firefox don't like the right

Re: [css-d] CSS layout problem

2005-05-03 Thread Timothy White
> http://weirdo.bur.st/cdemo/meidannetti/ > I didn't get a chance to do the blue strip on the side I have managed to do some more to it, got the strip, i tested most of it in IE now as well. Hope that helps. And for anyone else who is having trouble getting started on a design, feel free to study

Re: [css-d] CSS layout problem

2005-05-03 Thread Timothy White
On 5/3/05, TJT <[EMAIL PROTECTED]> wrote: > Hi, > > I've tried to implement my site's layout with CSS and now I've > crashed into problems, surprise surprise... > I've tried to make the positioning to work with floating, absolute and > relative positioning and it just won't work. > In URL www.meid

[css-d] CSS layout problem

2005-05-03 Thread TJT
Hi, I've tried to implement my site's layout with CSS and now I've crashed into problems, surprise surprise... I've tried to make the positioning to work with floating, absolute and relative positioning and it just won't work. In URL www.meidannetti.net is the layout implemented with tables. The