What's the next step up from 760?
Freeola Internet Get Dotted Domains Gaming & Extras
Freeola Gaming & Design
Emergency Internet
 
Browse Chat Forums:
 Chat Forums Home Latest Message Chat Rules Chat Safety & Tips Top Posters How to Win GAD Prizes View the Winners List Update Your Profile See Who's Online
  Free Web Site  Free Domain Hosting  Emergency Internet  Broadband Offers
 

Help & Support 7 Days a Week

HTML & PHP Chat & Help

Visit our Support Pages E-mail a Support Request Contact Us

Build Your Own Web Site In Minutes!

nothing
You Are Here Chat Home (42) Internet  Web Design  "What's the next step..."
Just lurking around? Why not join in? You could win free games just by chatting. Choose your Nickname in MyFreeola or Sign Up Here.
 
 
What's the next step up from 760?
Regular
on 27/04/2008 at 9:50:49PM
Total Posts: 10891
Original Post:
Yep, I'm ready to ditch those 600 by 800 jerks.

So could someone please tell me what width I should be working at now? I guess with the extra room I can finally switch to 3 columns, I'm sure you guys taught me how to do that but I forgot. :(

If only there was some way I could search my old threads in this forum to find the information I need. But as far as I'm aware, no such feature exists.
View More Threads Post a Reply  
   Delicious   Digg   Reddit      StumbleUpon
Displaying 1 - 31 of 31 Replies:
Garin
"Devil in disguise"
Regular
on 09/05/2008 at 8:30:22PM
Total Posts: 1743
Nothing to worry about.  Progress in web development is just taking all the current techniques/technologies and giving them new names.
Machie
Regular
on 09/05/2008 at 8:20:34PM
Total Posts: 10891
Web 3.0 already? But I haven't even finished my Web 2.0 website. Dammit, I'm gonna have to start all over again :(
Machie
Regular
on 07/05/2008 at 6:24:56PM
Total Posts: 10891
Hey Garin I'm back :D Thanks a lot for your help again, that site is really useful.

I'm about to do some more work on the site so can you stay by your computer for the next 8 hours incase I need your help again? Cheers!
Garin
"Devil in disguise"
Regular
on 03/05/2008 at 2:03:51PM
Total Posts: 1743
Machie wrote:
> inheritance? I'm not really familiar with the "inherit"
> command I better look it up.
>
> What I try to do is make sure I dont tell a div to do something
> that its parent is already doing. The W3C strict thing told me
> off for doing that. Now I try to do all that #content1, #content
> 2 stuff (when it works) to keep my CSS file as short as
> possible.

You're familiar with inheritance, you're talking about it in this paragraph. :)  Actually though, I should have really said inheritance and selectors.  You can cut out an awful lot of class/id declarations by using an elements relative position to assign styles.

> What I will do tomorrow when I do a clean up is search for some
> articles about all this ("how to keep your CSS tidy or
> something") so I can learn a few more things (like what you
> just mentioned to me) and hopefully I can do a better job :)

Google for csstidy, useful for tidying up your code, at least starting the job anyway.

> I would like to be a bit more adventerous with my designing but
> I've drilled the idea into my head that it has to be simple, not
> so much images, no javascript and no dhtml. I did think of those
> expand/collapse scripts to help tidy up my links/social
> bookmarks/etc but I got cold feet and backed away.
>
> oh I do have another question. I tend to use a lot of two column
> divs but they have a habit of messing up the layout. To solve
> this I surround them with a div that does nothing but hold them
> together and align their bottoms, is this acceptable or should I
> be doing it another way?

Its not ideal but nothing wrong with it.  Might be better ways to fix your problem, but without seeing the divs within the context of the whole page not alot can be said.
Machie
Regular
on 03/05/2008 at 1:55:17AM
Total Posts: 10891
inheritance? I'm not really familiar with the "inherit" command I better look it up.

What I try to do is make sure I dont tell a div to do something that its parent is already doing. The W3C strict thing told me off for doing that. Now I try to do all that #content1, #content 2 stuff (when it works) to keep my CSS file as short as possible.

What I will do tomorrow when I do a clean up is search for some articles about all this ("how to keep your CSS tidy or something") so I can learn a few more things (like what you just mentioned to me) and hopefully I can do a better job :)

I would like to be a bit more adventerous with my designing but I've drilled the idea into my head that it has to be simple, not so much images, no javascript and no dhtml. I did think of those expand/collapse scripts to help tidy up my links/social bookmarks/etc but I got cold feet and backed away.

oh I do have another question. I tend to use a lot of two column divs but they have a habit of messing up the layout. To solve this I surround them with a div that does nothing but hold them together and align their bottoms, is this acceptable or should I be doing it another way?

Cheers Garin :)
Garin
"Devil in disguise"
Regular
on 03/05/2008 at 1:34:40AM
Total Posts: 1743
Machie wrote:
> That's a great plug-in Garin thank you, it'll really come in
> handy. Unfortunately it's not showing me whats wrong. :/ I've
> been studying it and going through everything in this firebug for
> half an hour and still have no clue.

Well lets see it.

> I'm still getting use to deciding whether to use an id or class.
> Lets say I have 2 div "boxes" but one has a background.
> I do them as class right? What if they're different width or have
> borders? Something very similiar to another div but one or two
> things different? Or can I only use class when it's exactly the
> same? The article said not to go nuts with ids but if ids are
> suppose to be all unique then my pages would be full of ids.

Well remember you can assign something an id and a class, eg <div id="content" class="content2"></div> and you can assign multiple classes too like <div class="content content2"></div>.  So you can extrapolate the common elements to a class (or several) and then stuff the unique elements in an id (or even just apply a style directly if theres not much).  Also try to make as much use of inheritance as possible.

> Also I'm working on those embed/URL bars you see on youtube. I
> tried finding out more on google but I didn't know how to phrase
> it so I couldnt find any articles/tutorials. I stole this one
> from a site.
>
> <input type="text" size="40"
> color="#777777" value='http://www.freeola.com'
> onClick="this.focus();this.select();">

>
> But then I've seen it done differently on other sites, YouTube
> even use the <formtags. So Im not sure what I should be using.

Use whatever works for you, theres no right or wrong way to do this.
Machie
Regular
on 03/05/2008 at 1:00:10AM
Edited: 3/5/08 1:01
Total Posts: 10891
That's a great plug-in Garin thank you, it'll really come in handy. Unfortunately it's not showing me whats wrong. :/ I've been studying it and going through everything in this firebug for half an hour and still have no clue.

Hmm, I think my only option is to do another clean version and hope that sorts out the problem.

I'm still getting use to deciding whether to use an id or class. Lets say I have 2 div "boxes" but one has a background. I do them as class right? What if they're different width or have borders? Something very similiar to another div but one or two things different? Or can I only use class when it's exactly the same? The article said not to go nuts with ids but if ids are suppose to be all unique then my pages would be full of ids.

Also I'm working on those embed/URL bars you see on youtube. I tried finding out more on google but I didn't know how to phrase it so I couldnt find any articles/tutorials. I stole this one from a site.

<input type="text" size="40" color="#777777" value='http://www.freeola.com' onClick="this.focus();this.select();">

But then I've seen it done differently on other sites, YouTube even use the <form> tags. So Im not sure what I should be using. I hate the form tags when I'm designing a site.
Garin
"Devil in disguise"
Regular
on 02/05/2008 at 11:59:20PM
Total Posts: 1743
Try firefox (look at the error console), also install Firebug on it and inspect the relevant elements (right click and select inspect element), it'll show you exactly what css is influencing that element.
Machie
Regular
on 02/05/2008 at 11:48:01PM
Total Posts: 10891
That's odd, it's still not working. The second one cancels out the first (so only content2 works and not content). :/

I checked the rest of my work and there's nothing wrong or missing, no ) instead of } or anything like that.

How annoying :(

Thanks for your help Garin.
Garin
"Devil in disguise"
Regular
on 02/05/2008 at 11:03:21PM
Total Posts: 1743
Machie wrote:
> #content, #content2 { width:100%; }

Should work, must be something else going on.
Machie
Regular
on 02/05/2008 at 8:08:25PM
Total Posts: 10891
Thanks a lot Virtuo, that's a big help to me. It also gave me some great ideas :D

----

Afraid I have another silly question. How do I change two divs at once again?

#content { width: 100%; }
#content2 ( width: 100%; )

I tried doing...

#content, #content2 { width:100%; }

but I couldnt get it to work. Hmm am I doing something wrong or is this only possible with class divs, I can't remember :S
Virtuo
Regular
on 02/05/2008 at 11:38:58AM
Total Posts: 12
I work at a company running 2 very large websites (3million hits + per week, corporate and gaming), when a liquid scalable design isn't an option, we will always assume a minimum resolution of 1024px. It does depend on your target audience though, we find the people running 800x600 still are either very old or very young, our markets are 18-40 yrs, and statistically we have fewer than 0.1% on 800x600 or less in this age group.

If going fixed width, you need to take into account browser chrome, and the fact not everyone will have their browser maximised. For a 1024x768 screen, we'd go for 980-986px wide.


I'd personally consider some client-side javascript, similar to a lightbox for "expanding" images if they are difficulkt to read at 780 width instead of 850. Then your design doesn't have to change and it'll be an attractive update for your visitors.
Garin
"Devil in disguise"
Regular
on 30/04/2008 at 3:31:59PM
Total Posts: 1743
Yeah, its Without A Clue.  Sherlock Holmes is played by Michael Caine and Ben Kingsley is Dr. Watson. 80s movie too btw.  As an 80s kid you should know it. :P
Machie
Regular
on 30/04/2008 at 3:19:12PM
Total Posts: 10891
Sounds familiar, did you remember the title?
Garin
"Devil in disguise"
Regular
on 30/04/2008 at 1:44:13AM
Total Posts: 1743
Young Sherlock Holmes...oh dear....  Now I'm trying to think of the movie where Dr. Watson was the portrayed as the smart one, and Holmes was a fool he employed to cover for him.

And Bill Lumbergh is from Office Space.  And I doubt I saw it until maybe 2001 anyway as I remember being in NJ and I got to see the end of it with my partner having to run through the plot for me. 

Also my age will forever remain a mystery to you. ;)
Machie
Regular
on 30/04/2008 at 1:20:24AM
Total Posts: 10891
They were good movies but I also liked Young Sherlock Holmes :) As you're not a 80ies kid I can let you off. So I'll give you a 90ies question. :) Which movie starred Bill Lumbergh. Actually you probably haven't seen that movie either :/ you really should see more films Garin.
Garin
"Devil in disguise"
Regular
on 30/04/2008 at 1:10:30AM
Total Posts: 1743
Unfortunately I didnt spend the 80s watching every movie that came out.  I bet its a rubbish movie anyway.  The only thing decent in the 80s that had CGI was Tron and The Last Starfighter. :p
Machie
Regular
on 29/04/2008 at 11:18:00PM
Total Posts: 10891
And yet you claim to know everything with a brain the size of a planet. :/ what else have you been lying to me about?

I'm practically giving you the answer with this tip. It was the first movie to have a complete CGI character.
Garin
"Devil in disguise"
Regular
on 29/04/2008 at 11:13:03PM
Total Posts: 1743
Machie wrote:
> I have a problem. My comic needs to be 850 width, so I can't
> design any lower than that without resizing the comic.

As ever, without seeing what you're doing difficult to make useful suggestions.  Certainly would never have suggested variable width if I'd known there was a 850px image involved. :)

> Another question, this 80ies film reminds me of Harry Potter,
> infact one of the "bad guys" is a blonde student called
> Dudley. When I think of Professor Snape I imagine him to look
> like Professor Rathe who also stars in this movie. What is the
> name of this movie Garin?

Do I type like I'm IMDB come to life? How do I know. :P
Machie
Regular
on 29/04/2008 at 9:26:45PM
Total Posts: 10891
I have a problem. My comic needs to be 850 width, so I can't design any lower than that without resizing the comic.

So far it's looking good, it's nice having more room to work with. I also made a few changes to the navigation so it's much easier to use.

Thanks again for you help Garin, by the way Big Trouble in Little China is on tonight at 11pm on Film 4. Just thought I'd mention it if you still couldnt find your DVD ;)

Another question, this 80ies film reminds me of Harry Potter, infact one of the "bad guys" is a blonde student called Dudley. When I think of Professor Snape I imagine him to look like Professor Rathe who also stars in this movie. What is the name of this movie Garin?
Garin
"Devil in disguise"
Regular
on 29/04/2008 at 3:23:09PM
Total Posts: 1743
Well what I prefer doesnt really matter as I'm probably not a typical user.  My current resolution is 1440x900, but my browser windows are at 1136x772 (nothing significant about those numbers just what the windows are sized to).
No clue what you're doing but ideally with fluid designs you'd expect the main content column to be somewhat readable at lower resolutions still.
Machie
Regular
on 29/04/2008 at 2:54:28PM
Total Posts: 10891
Some good advice Garin, thanks :D

I have one more question about fluid designs. What size should I work at? The 600x800 jerks or the next one up? I remember you saying you're too cheap to buy a second monitor so you have two windows open next to each other, so you prefer 600x800 right? Do others do this too?
Garin
"Devil in disguise"
Regular
on 28/04/2008 at 7:13:18PM
Total Posts: 1743
Machie wrote:
> Thanks guys :) I did come accross that one first Garin but as you
> mentioned its more code and you always taught me not to use other
> peoples codes unless I fully understand how it works.

Wise words, it was probably somebody else who said them.
I think you have to temper that with some realism though, otherwise you'll be forever learning about css techniques without ever really finishing your website. ;)

> Well I still haven't sorted out the search engine, not that
> important really, but I guess I'll need php to email me 404
> errors if I decide to do that instead of checking my error log.

Its wrong to assume that every 404 to your site will be because of broken links.  You could end up receiving quite alot of emails. ;)  Logs are really quite sufficient for this sort of thing.
Machie
Regular
on 28/04/2008 at 3:19:27PM
Total Posts: 10891
Thanks guys :) I did come accross that one first Garin but as you mentioned its more code and you always taught me not to use other peoples codes unless I fully understand how it works.

I'll give it a try though. I'm just after your standard fixed width columns either side of the main content which can be fluid. I'm trying to imagine what my site would look like on your browser digi. I guess my blog and articles in the center will be much more streteched out and finally I wont have to worry about the navigations when someone increases the text sizes.

I'll let you know how I get on. Right now I'm just quickly doing the error pages. It's 401, 403, 404 and 500 right? Include a link to the site map, don't include the sites navigation, don't use refer to the error codes, be apologetic, trap and automatically email 404 errors to yourself and include a search box.

Well I still haven't sorted out the search engine, not that important really, but I guess I'll need php to email me 404 errors if I decide to do that instead of checking my error log.
Digitrader
"rodeado de tontos"
Moderator
on 28/04/2008 at 2:40:59PM
Total Posts: 810
I forgot to add at present my new PC looks at browser with a screen resolution of 1280 X 1024 pixels

digi
Garin
"Devil in disguise"
Regular
on 28/04/2008 at 2:27:05AM
Total Posts: 1743
Well theres lots of ways to do such layouts.  As long as it works in the browsers you want it to work in, whats the problem? :)

Having said that, this one may well be better even if it is more css.  Of course, its pretty similar to way I've done 3 column layouts in the past, so I would say that. :P
Machie
Regular
on 28/04/2008 at 1:26:43AM
Total Posts: 10891
Thanks guys. I'm still trying, just having a headache from looking for a decent 3 column script.

It's a bloody joke if you ask me. They could have made it simple like, float left, middle, right and have it be compatible with all the latest browsers and W3C. But no, now I have too many choices and I get confused and scared when they go on about "it works with this but not that and we have to do this to make that work" and so on. Why isn't it more simple?

I'm looking at this one at the moment,

http://blog.html.it/layoutgala/LayoutGala13.html

div#middle{margin: 0 200px}
div#left {float:left;width:200px;margin-left:-100%}
div#right {float:left;width:200px;margin-left:-200px}

Something about creating the columns in negative margins. Creating two columns of 200px either side of the main content. Then having the left column have a left margin of negative 100%? and the right column a negative 200px left margin? WHT? And finally wrapping it all with float:left;width:100%

Does any of this sound familiar?
Digitrader
"rodeado de tontos"
Moderator
on 28/04/2008 at 12:14:54AM
Total Posts: 810
I would not worry to much about what it looks like even pros can get it a little wrong - take freeolas site on my pc with a huge resolution it looks fine yet on my laptop its all to the left! big white space on the right.

Digi
Garin
"Devil in disguise"
Regular
on 27/04/2008 at 10:25:50PM
Total Posts: 1743
Machie wrote:
> Isn't there a standard width for that resolution? Like 760 was
> for 600x800 :)

There was never really a "standard".  Only thing you have to worry about is that its less than the width of the browser window edges + scrollbars. So basically pick a number, how about 960?

> I'd love to go without the fixed width but I'd worry it'd look a
> bit stupid on the huge monitors, or do they have their browser
> resolutions set smaller?

Well, I think its fair comment that the higher the resolution the less likely a user is going to have their window maximised (there are some stats somewhere that suggest this too).  And I'm not really sure a fluid design is going to look anymore "stupid" than a fixed width design surrounded by acres of whitespace.

> If you know any good examples of sites
> without "barriers", I'd be willing to have a look. I'm
> very keen to have a well designed website.

I can never find examples when people ask, but I have seen some around.  Have a look at these templates though, they show quite a few different styles and ways to tackle fluid layouts.
Machie
Regular
on 27/04/2008 at 10:10:49PM
Total Posts: 10891
Isn't there a standard width for that resolution? Like 760 was for 600x800 :)

I'd love to go without the fixed width but I'd worry it'd look a bit stupid on the huge monitors, or do they have their browser resolutions set smaller? If you know any good examples of sites without "barriers", I'd be willing to have a look. I'm very keen to have a well designed website.
Garin
"Devil in disguise"
Regular
on 27/04/2008 at 10:02:20PM
Total Posts: 1743
The next resolution up from 800x600 is 1024x768 so anything less than that really.  Of course you could just skip fixed width altogether, certainly the more "modern" approach to such problems.
Machie
Regular
on 27/04/2008 at 9:50:49PM
Total Posts: 10891
Yep, I'm ready to ditch those 600 by 800 jerks.

So could someone please tell me what width I should be working at now? I guess with the extra room I can finally switch to 3 columns, I'm sure you guys taught me how to do that but I forgot. :(

If only there was some way I could search my old threads in this forum to find the information I need. But as far as I'm aware, no such feature exists.
 
Change Chat Area
 
Your Details MyFreeola Internet Settings Control Panel Your Details
Login or create a free account.
Forgotten your password?
Free Account Sign-Up
 
 
Fantastic FREE Unlimited Services for every freeola internet customer in the UK!
Register Domain Names. Buy from £2.99
e.g. yourcompany.com
or just yourcompany.
MORE ABOUT DOMAIN NAMES