Your web browser? | xltronic messageboard
 
You are not logged in!

F.A.Q
Log in

Register
  
 
  
 
Now online (1)
DADONCK
...and 423 guests

Last 5 registered
Oplandisks
nothingstar
N_loop
yipe
foxtrotromeo

Browse members...
  
 
Members 8025
Messages 2614148
Today 0
Topics 127544
  
 
Messageboard index
Your web browser?
 

offline ecnadniarb on 2005-04-07 10:46 [#01555883]
Points: 24805 Status: Lurker | Show recordbag



Coding without tables is piss easy.


 

offline dog_belch from Netherlands, The on 2005-04-07 10:51 [#01555887]
Points: 15098 Status: Addict | Followup to ecnadniarb: #01555883 | Show recordbag



Depends what you want to do, old boy. I dare say I could
tinker with Divs but I don't know what differnce it makes.
Is it just coding snobbishness or are Tables being phased
out?


 

offline epohs from )C: on 2005-04-07 10:53 [#01555892]
Points: 17620 Status: Lurker



Is it just coding snobbishness or are Tables being phased
out?

Yes, and yes.


 

offline KADO from The Belafonte (United Kingdom) on 2005-04-07 10:54 [#01555893]
Points: 1484 Status: Regular



I use Opera, never had any slow down problems.


 

offline Phresch from fucking Trondheim (Norway) on 2005-04-07 10:56 [#01555896]
Points: 9989 Status: Lurker | Show recordbag



Opera.


 

offline dog_belch from Netherlands, The on 2005-04-07 10:56 [#01555898]
Points: 15098 Status: Addict | Followup to epohs: #01555892 | Show recordbag



Oh well, more work for me then when all the sites need their
tables removed.


 

offline ecnadniarb on 2005-04-07 10:59 [#01555899]
Points: 24805 Status: Lurker | Followup to dog_belch: #01555887 | Show recordbag



Divs are a lot more flexible than tables. But tables are
easier for people to visualise and implement. It doesn't
matter really.


 

offline godataloss from Cleveland (United States) on 2005-04-07 11:02 [#01555900]
Points: 1416 Status: Lurker



firefox (mostly)


 

offline ecnadniarb on 2005-04-07 11:02 [#01555902]
Points: 24805 Status: Lurker | Show recordbag



table tags aren't being phased out at all, there is a move
and recommendation for them to stop being used for site
layout purposes, but for tabular information they still make
perfect sense.


 

offline epohs from )C: on 2005-04-07 11:04 [#01555903]
Points: 17620 Status: Lurker



Yeah, I wouldn't sweat it too much.

Going with tableless layouts & CSS has definate advantages,
and I'd advise looking into it, and slowly migrating your
new work that direction, but I highly doubt you'll run into
any problems any time soon.

It's really just a different way of thinking about web
design. Seperating your markup from the visual
presentation. It matters, but it isn't anything immediate.

besides, by the time the majority of people have moved away
from table based layouts, there'll be something cooler than
CSS, and we'll all be moving past it.


 

offline dog_belch from Netherlands, The on 2005-04-07 11:16 [#01555910]
Points: 15098 Status: Addict | Show recordbag



Yes, I see now. I found this interesting comment though from
a blog article on the matter...

Despite the fact that tables are for tabular data, it has
become the perfect medium for making a grid in web design so
we can place our elements correctly in the page.
One thing that is obvious is that neither CSS or (X)HTML was
made by designers but programmers. When we try to mimic
table-based in a CSS layout (once converted to the Zeldman
Evangelion) it’s graphic design’s old grid what we want
to acomplish. CSS is broken because it lacks of design most
basic concept: Grids.


But as you say, once everyone's got a handle on CSS it'll be
x-VPL Insta-Layout standards that'll need boning up on.



 

offline uzim on 2005-04-07 11:19 [#01555914]
Points: 17716 Status: Lurker | Followup to acidophilus: #01555560



love your avatar. : )


 

offline ecnadniarb on 2005-04-07 11:20 [#01555916]
Points: 24805 Status: Lurker | Followup to dog_belch: #01555910 | Show recordbag



That it complete rubbish.


 

offline epohs from )C: on 2005-04-07 11:21 [#01555917]
Points: 17620 Status: Lurker



yeah, there are definately some things that CSS is a total
bitch about.

the one that really irks me is how round-about and
convoludedly hard it is to vertically center an element.
it's really a shortcoming.

but, once you dive into it, it ends up making a lot of
sense. a lot of the reason people complain about tableless
design is that they've got years of experience doing layout
with tables, so that makes sense to them.


 

offline ecnadniarb on 2005-04-07 11:25 [#01555923]
Points: 24805 Status: Lurker | Followup to epohs: #01555917 | Show recordbag



What's so hard about 'vertical-align:middle'?


 

offline dog_belch from Netherlands, The on 2005-04-07 11:26 [#01555924]
Points: 15098 Status: Addict | Followup to ecnadniarb: #01555916 | Show recordbag



Hmm, I'm afraid I do fall into that dusty, mothbitten,
table-centric bracket.

ecnadniarb : not is itn't


 

offline ecnadniarb on 2005-04-07 11:28 [#01555928]
Points: 24805 Status: Lurker | Followup to dog_belch: #01555924 | Show recordbag



It's easy to do grids with divs and CSS.


 

offline epohs from )C: on 2005-04-07 11:28 [#01555929]
Points: 17620 Status: Lurker | Followup to ecnadniarb: #01555923



vertical-align really only applies to inline objects, like
text, and how text wraps around images, and whatnot.

it won't allow you to center elements inside a block
element, like a div or a table cell.


 

offline virginpusher from County Clare on 2005-04-07 11:30 [#01555932]
Points: 27325 Status: Lurker



I use the standard IE. Firefox doesnt really cut it for me.
I find IE more efficient for page viewing.


 

offline epohs from )C: on 2005-04-07 11:32 [#01555938]
Points: 17620 Status: Lurker | Followup to epohs: #01555929



in order to do vertical centering with css you have to take
a lot of bullshit steps.. the best i've found is to use
absolute positioning.

like this.. although, this example has a little extra
code in there for rounding the corners; you can see what
needs to be done in #horizon and .card.


 

offline epohs from )C: on 2005-04-07 11:43 [#01555945]
Points: 17620 Status: Lurker



tableless web design (no flash)


 

offline fleetmouse from Horny for Truth on 2005-04-07 11:48 [#01555953]
Points: 18042 Status: Lurker | Followup to epohs: #01555945



Holy shitcock. No flash?

:: bookmarks for dissection ::


 

offline epohs from )C: on 2005-04-07 11:49 [#01555955]
Points: 17620 Status: Lurker | Followup to fleetmouse: #01555953



yeah, it's a small site, but the DHTML work is stunning.


 

offline big from lsg on 2005-04-07 11:51 [#01555957]
Points: 23730 Status: Lurker | Show recordbag



what's this table? columns?


 

offline fleetmouse from Horny for Truth on 2005-04-07 11:56 [#01555964]
Points: 18042 Status: Lurker | Followup to big: #01555957



TABLE IS WHERE YOU EAT PANCAEK


 

offline qrter from the future, and it works (Netherlands, The) on 2005-04-07 12:52 [#01556003]
Points: 47414 Status: Moderator | Followup to fleetmouse: #01555964



or where people in France go to have a shit.


 

offline epohs from )C: on 2005-04-07 13:06 [#01556012]
Points: 17620 Status: Lurker



sur la table?


 

offline qrter from the future, and it works (Netherlands, The) on 2005-04-07 13:10 [#01556015]
Points: 47414 Status: Moderator



I made my own browser out of some paper and
stickyback-plastic.


 

offline Drunken Mastah from OPPERKLASSESVIN!!! (Norway) on 2005-04-07 13:20 [#01556021]
Points: 35867 Status: Lurker | Show recordbag



tables = longer load time.

divs = recommended + formatting of them being compatible
with the future


 

offline epohs from )C: on 2005-04-07 13:27 [#01556023]
Points: 17620 Status: Lurker



i surf the webs on an abacas.


 

offline qrter from the future, and it works (Netherlands, The) on 2005-04-07 13:27 [#01556025]
Points: 47414 Status: Moderator | Followup to Drunken Mastah: #01556021



what is compitable with the future is only what we decide,
no?


 

offline evolume from seattle (United States) on 2005-04-07 13:28 [#01556026]
Points: 10965 Status: Regular



i like firefox a lot. i pretty much don't use IE at all
anymore. my favorite new firefox pluggin is DTA or
downthemall! which lets you download all the links on a
given page with like 2 clicks.

so for me and my browsing habits, firefox is pretty boss!



 

offline epohs from )C: on 2005-04-07 13:35 [#01556029]
Points: 17620 Status: Lurker | Followup to epohs: #01556023



abacUs, you FOOL!


 

offline Drunken Mastah from OPPERKLASSESVIN!!! (Norway) on 2005-04-07 13:37 [#01556031]
Points: 35867 Status: Lurker | Followup to qrter: #01556025 | Show recordbag



no.

unfortunately we don't have anything to say about
it... the w3c does.


 

offline qrter from the future, and it works (Netherlands, The) on 2005-04-07 13:38 [#01556032]
Points: 47414 Status: Moderator | Followup to Drunken Mastah: #01556031



is this some sort of inhuman force?


 

offline Drunken Mastah from OPPERKLASSESVIN!!! (Norway) on 2005-04-07 13:44 [#01556036]
Points: 35867 Status: Lurker | Followup to qrter: #01556032 | Show recordbag



yes.

their leader can turn any straight man gay with the blink of
an eye.

*winks at qrter


 

offline epohs from )C: on 2005-04-07 13:48 [#01556037]
Points: 17620 Status: Lurker



i surf the webs on a rotary phone.


 

offline Aesthetics from the IDM Kiosk on 2005-04-07 14:04 [#01556039]
Points: 6796 Status: Lurker



firefox mostly

1% of the time I need to use IE :(


 

offline r40f from qrters tea party on 2005-04-07 14:59 [#01556071]
Points: 14210 Status: Regular



first let me just mention that this thread is massive!

i used ie for most things (firefox for certain sites) until
a week ago. now i am forced to use mozilla and konquerer.
mozilla sucks. i miss firefox, but can't install it. so if
i could choose, i'd be using firefox. it's massive.


 

offline epohs from )C: on 2005-04-07 15:02 [#01556073]
Points: 17620 Status: Lurker



what flavor of linux are you using now, r40f?


 

offline r40f from qrters tea party on 2005-04-07 15:08 [#01556075]
Points: 14210 Status: Regular | Followup to epohs: #01556073



kde 3.1 via libranet. it's the easiest (best?) one that
came with libranet. are you familiar with it? what do you
have?

favorite parts of linux of the day:

- audacity crashes at random times for no reason and
everything is lost.
- audacity crases when using ctrl+c to copy and then
overwrites a previously saved file, permanently
deleting the last 3/4 of it.
- can't burn cdrs at all in one program, can't open the
other program. both give errors.
- rar software doesn't let me choose which files to rar, so
i have to compress the entire directory.
- nautilus destroys all settings and tries to reboot after
logging back in.

and it's only 5pm! EFFICIENT!


 

offline fleetmouse from Horny for Truth on 2005-04-07 15:15 [#01556082]
Points: 18042 Status: Lurker | Followup to r40f: #01556075



I can't believe the shit Linux is giving you. Worst problem
I ever had with Linux was when one particular edition of
Mandrake had shitty fonts that fucked up Mozilla and I could
never figure out how to fix them.

Maybe it's hardware related - a bad stick of ram? Bios needs
updating?


 

offline fleetmouse from Horny for Truth on 2005-04-07 15:15 [#01556083]
Points: 18042 Status: Lurker | Followup to r40f: #01556075



Oh man, don't bother with rar - use tar and gzip.


 

offline qrter from the future, and it works (Netherlands, The) on 2005-04-07 15:17 [#01556085]
Points: 47414 Status: Moderator | Followup to fleetmouse: #01556083



I've never had problems with rar.


 

offline r40f from qrters tea party on 2005-04-07 15:22 [#01556087]
Points: 14210 Status: Regular | Followup to fleetmouse: #01556082



good sir, those are only the NEW problems i've first
experienced today... i had to start using rar's because i
had to download/upload files in this format.


 

offline fleetmouse from Horny for Truth on 2005-04-07 15:23 [#01556088]
Points: 18042 Status: Lurker | Followup to qrter: #01556085



I suspect he's using the command line version - there are
probably options and shit that must be specified in a string
of martian hieroglyphics.

I've been using 7-Zip for windows - it handles rar
archives and everything else, and it's free.

I don't use normal people programs because I am a communist
salmon.


 

offline qrter from the future, and it works (Netherlands, The) on 2005-04-07 15:28 [#01556089]
Points: 47414 Status: Moderator | Followup to r40f: #01556087



wasn't pomme going to help you out?


 

offline r40f from qrters tea party on 2005-04-07 15:42 [#01556094]
Points: 14210 Status: Regular | Followup to qrter: #01556089



i know as much about that as you do...

and yes, i'm using the command-line nonsense. linux is
better than windows because you get to open a program
unrelated to the one you want to use, type in archaic
syntax, figure out which parameters will do the job and then
hope that you have "permission" to do it and everything is
configured properly in all your other non-related programs
that you don't even know how to access. and in windows, to
do the same thing, you'd only get to click two things and
that's no fun at all!


 

offline Exaph from United Kingdom on 2005-04-07 15:54 [#01556095]
Points: 3718 Status: Lurker | Followup to qrter: #01555605



yeah but imagine the millions who dont? its important so
that webdesigners can continue to provide you with the best
online experience, and as with anything this means,
standards. cross-browser.


 

offline Exaph from United Kingdom on 2005-04-07 15:58 [#01556098]
Points: 3718 Status: Lurker



you have to imagine how many people are viewing your site -
(potentially) millions = different browsers at different
resolutions. yeah tables may look sweet on your moniter in
ie/firefox but that doesnt necessarily apply to the
thousands of people potentially visiting..


 


Messageboard index