Welcome, Guest. Please Login or Register.
April 18, 2024, 09:20:51 AM
Home Help Search Log in Register
News: If you are still using YaBB SE, please consider upgrading to SMF as soon as possible.

YaBB SE Community  |  Development  |  Portal Discussion  |  First post!!! « previous next »
Pages: 1 2 [3] 4 Reply Ignore Print
Author Topic: First post!!!  (Read 29650 times)
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:First post!!!
« Reply #30 on: January 22, 2003, 09:58:36 PM »
Reply with quote

I'm sorry, but again you misunderstand me.  And I misunderstand you.

Regardless, I never said that I don't use CSS - I said that it is only so powerful.  You can't build a building with paint and you can't paint a building with bricks.

I also agree, YaBB could be modified to use template system much like vBulletin's - easily too.  But that is simple, and useless.  Further, modifying some parts of YaBB SE and YaPP would be quite annoying given their current architecture.

Now, let me get back to work on SE 2's template system.

-[Unknown]
Logged
Benn
Noobie
*
Posts: 31


Kinetic Past

Re:First post!!!
« Reply #31 on: January 23, 2003, 02:06:04 AM »
Reply with quote

Okay, my thoughts...

CSS is really that powerful, you could fully design a site that just changing the CSS file could radically change the layout of your site, all through the joint power of div tags. But, I wouldn't recommend a portal system be based just around CCS, the CSS would end up being huge to make it fully customisable, but more importantly it would scare off those that don't fully understand CSS, they wouldn't know where to start and you are basically back at square one, you may as well just go into the PHP files and modify all the HTML.

I think multiple template files are a must now for any forum or portal system if you want customisability. Sure, you could modify all the HTML within the portal files, but then there is very little difference between using a portal and building a site yourself anyway.
Logged



> "We have seen strange things today." Luke 5:26 <
mephisto_kur
Sr. Member
****
Posts: 308


Hi ho.

WWW
Re:First post!!!
« Reply #32 on: January 23, 2003, 03:07:59 AM »
Reply with quote

I agree with this.  I would like to take the time to pull all the HTML into a more editable place instead of scattered throughout the php files, tho.

Just to be clear, I was not suggesting that the site be based on CSS, I was suggesting that CSS be more utilised than it is.  Thats all.
Logged



Awmp, ding, soo googoongee doop, dee
Googoo Fleegoogeegoo
Goo Fleegoogeegoo
Duht, Deeheeh
Oogoogoog Dtee
Oogoogagoo oogoogweee
Fleegoogeegoo, fleegow
Go go mah mah mefs sufh yeah...
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:First post!!!
« Reply #33 on: January 23, 2003, 03:26:45 AM »
Reply with quote

Don't forget that 90% of the browser market uses a browser that sucks at CSS.
Logged
David
Destroyer Dave
Global Moderator
YaBB God
*****
Posts: 5761


I'm not a llama!

WWW
Re:First post!!!
« Reply #34 on: January 23, 2003, 03:36:08 AM »
Reply with quote

Quote from: Gobalopper on January 23, 2003, 03:26:45 AMDon't forget that 90% of the browser market uses a browser that sucks at CSS.
Safari, Apple's new browser, sucks ass at complicated CSS.
Logged

mephisto_kur
Sr. Member
****
Posts: 308


Hi ho.

WWW
Re:First post!!!
« Reply #35 on: January 23, 2003, 05:06:19 AM »
Reply with quote

Thats what they get for not going with Chimera.
Logged



Awmp, ding, soo googoongee doop, dee
Googoo Fleegoogeegoo
Goo Fleegoogeegoo
Duht, Deeheeh
Oogoogoog Dtee
Oogoogagoo oogoogweee
Fleegoogeegoo, fleegow
Go go mah mah mefs sufh yeah...
David
Destroyer Dave
Global Moderator
YaBB God
*****
Posts: 5761


I'm not a llama!

WWW
Re:First post!!!
« Reply #36 on: January 23, 2003, 05:10:49 AM »
Reply with quote

Quote from: mephisto_kur on January 23, 2003, 05:06:19 AMThats what they get for not going with Chimera.
ROFLMAO

It has nothing to do with Chimera.  It was the engine they decided to use, and even then that does not control CSS.  Chimera and Mozilla use Gecko but Apple decided to use KHTML.
Logged

[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:First post!!!
« Reply #37 on: January 23, 2003, 05:15:27 AM »
Reply with quote

I think there is a lot of good with CSS IF, as was said, you can add div tags anywhere at will.  However you can't.

Let's say this is the Portal's output:

<div style="coolbox">
This is the content there are no more tags with styles.  Sorry.
</div>

I guess you'd be dead in the water wouldn't you?  That's what I've been saying.  Even with existing divs.... they must be where they are put by the portal.  YOU CAN'T MOVE THEM.

I can't add three boxes to the portal.  For those who bow before the current layout, I suppose this is fine.  But otherwise nothing but multiple templates can save you.  CSS definitely can't.

-[Unknown]
Logged
Michele
Beta Tester
YaBB God
*****
Posts: 584


I can't wait for YaBB SE 2!

Mad+Moya WWW
Re:First post!!!
« Reply #38 on: January 23, 2003, 05:33:42 AM »
Reply with quote

But you can override a div's style with one of your own. Something as simple as a <p style=yourstyle> will temporarity override the <div> style until it hits </p>.

EDIT: Actually, I'm pretty sure you can nest <div> tags, so you can just put a set of your own inside the other guy's tags.

Mad Moya
« Last Edit: January 23, 2003, 05:35:51 AM by Mad Moya » Logged

formerly Mad Moya
PfaBB - http://pfabb.lunabyte.com
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:First post!!!
« Reply #39 on: January 23, 2003, 05:50:21 AM »
Reply with quote

Quote from: Mad Moya on January 23, 2003, 05:33:42 AMBut you can override a div's style with one of your own. Something as simple as a <p style=yourstyle> will temporarity override the <div> style until it hits </p>.

EDIT: Actually, I'm pretty sure you can nest <div> tags, so you can just put a set of your own inside the other guy's tags.

Mad Moya

I'm sorry... I'm trying to say.... what if I were to write a C++ program and compile it.  It's output is this: (note: you cannot change a compile C++ program - or at least, pretend you can't.)

<link rel="stylesheet" type="text/css" href="whatever parameter 1 was">
<div>
blah
<div>blarg</div>

<div style="cool">sdsad</div>
</div>
(abrievated, would have html, head, body, etc.)

There is no way to change the look of it... other than changing ALL the divs, or changing the div style="cool".

Further, even if each was named with a div... it would be impossinle to put the 'blah' at the bottom, under 'blarg'.

Please, I may not neccesarily be an expert, but don't act like I know nothing about HTML/XHTML/CSS.

-[Unknown]
Logged
Michele
Beta Tester
YaBB God
*****
Posts: 584


I can't wait for YaBB SE 2!

Mad+Moya WWW
Re:First post!!!
« Reply #40 on: January 23, 2003, 06:03:47 AM »
Reply with quote

Unknown, no reason to get huffy about it! :)

Actually, I thought you were talking about inserting YOUR CODE into someone else's code and not being able to override their <div> statements.

Now I think you're saying... hmmm... I guess I don't know quite what you saying. You want an easy way to change THEIR <div> or other styling codes to something else, but they're sloppy programmers and didn't use a stylesheet/CSS, so there's no easy way to do it without going through it line by line? Is that what you're saying?

If so, I agree. :)
Logged

formerly Mad Moya
PfaBB - http://pfabb.lunabyte.com
mephisto_kur
Sr. Member
****
Posts: 308


Hi ho.

WWW
Re:First post!!!
« Reply #41 on: January 23, 2003, 06:21:08 AM »
Reply with quote

Quote from: David on January 23, 2003, 05:10:49 AM
Quote from: mephisto_kur on January 23, 2003, 05:06:19 AMThats what they get for not going with Chimera.
ROFLMAO

It has nothing to do with Chimera.  It was the engine they decided to use, and even then that does not control CSS.  Chimera and Mozilla use Gecko but Apple decided to use KHTML.

I know, but I'm a Phoenix freak, so Chimera is as close as Apple would ever get to it.  <shrug>  I think I'm becoming a browser bigot.
Logged



Awmp, ding, soo googoongee doop, dee
Googoo Fleegoogeegoo
Goo Fleegoogeegoo
Duht, Deeheeh
Oogoogoog Dtee
Oogoogagoo oogoogweee
Fleegoogeegoo, fleegow
Go go mah mah mefs sufh yeah...
irbrian
Sr. Member
****
Posts: 489


I create. Therefore I am.

brian@inverse-reality.com WWW
Re:First post!!!
« Reply #42 on: January 23, 2003, 06:57:57 AM »
Reply with quote

Throws up hands in frustration and mild disgust

Alright!! Enough!! lol.. would anyone mind terribly if I steer this topic back to the point I was trying to make before?


Quote from: mephisto_kur on January 22, 2003, 08:34:01 PMFirst, I'll point out that what was asked for was the ability to recreate the looks of the site above using my favorite portal.  I know it could be done with the abilities of an average modder - admittedly with lots of time to mess with it.

You are talking about something entirely different from what he was talking about.  I still believe it is within the realm of an average modder.  Look at BoardIndex.php.  All that file is is one giant template.  There is no reason why you wouldn't be able to go in there, slice it up and have php code point at different templates for different fucntions - your kind of templates, not mine.  BoardIndex.php and Display.php and all of the other files that display anything are showing the user *just html.*  Funny thing is, there are many calls to the CSS of the template (My kind, not yours) in these files.

Actually, Unknown and I were very much on similar wavelengths on this one. I think both of us were simply trying (unsuccessfully, I can see) to point out that Portals can not be made to look like just any imaginable site without modifying the code a fair bit.

They are not terribly flexible, and I'm standing by that point.

If you want to prove me wrong, here's a new challenge (a practical challenge this time, not a theoretical one): Show me a site that was developed using a Portal, that doesn't look like a portal. And this time, no major code modifications -- at the very least its got to credit the Portal software in the copyright tag. :)
« Last Edit: January 23, 2003, 08:44:44 AM by irbrian » Logged

Imparting great wisdom daily to those who will mistake my words as such.
mephisto_kur
Sr. Member
****
Posts: 308


Hi ho.

WWW
Re:First post!!!
« Reply #43 on: January 23, 2003, 02:34:52 PM »
Reply with quote

Still not a valid task.  All you have done is remove the ability of me or another to modify the code.  Since YaBBSE and its portals are GPL, thats kind've the point.  Of course a portal is restrictive when you aren't allowed to modify the code.  Any software is - if only because the programmers can't think of *everything* a user might want to be able to do.
Logged



Awmp, ding, soo googoongee doop, dee
Googoo Fleegoogeegoo
Goo Fleegoogeegoo
Duht, Deeheeh
Oogoogoog Dtee
Oogoogagoo oogoogweee
Fleegoogeegoo, fleegow
Go go mah mah mefs sufh yeah...
Michele
Beta Tester
YaBB God
*****
Posts: 584


I can't wait for YaBB SE 2!

Mad+Moya WWW
Re:First post!!!
« Reply #44 on: January 23, 2003, 03:10:22 PM »
Reply with quote

irbrian, I see your point, and I'm right there with you on the separation of code and style, but programmers then run into a problem.

Most of what is presented is information from a database. And since each presentation is using different tables/fields, it's impossible to remove the <table> tags from some of the code. Well, not impossible if you write code in the "template" to create them on the fly, but not practical to cover all situations. A well designed table, used for this purpose is actually preferable to people visiting a site with various impairments (visual, aural, mobility) because information is presented in an expected manner and their speech readers or alternative input devices know how to find their way around a table.

And since the data is different on nearly each page, each table needs a certain amount of styling built in (left align that column, center that one, <th> here, <th> there, etc). Therefore the table ends up inside the code instead of outside it.

With that said, I think most forums and portal packages out there go way overboard with tables... to the point it impairs accessible access to a site (confusing input devices with nested tables for instance). A table is a structural layout tag, not a "let's have cool borders" layout tag, and nested them 3 deep for various effects is not the way we should be doing it.

I used tables as an example, but it's not the only offender of imbedded html, just the worst one. When they hard code their style classes into them, it gets worse. :)

OTOH, portals are designed for folks to get their site up and running with minimal fuss. If someone wants complete control over style in every page of a site, then they probably also know enough css/stylesheet to do it themselves and avoid the portal packages in the first place.

If someone makes a portal that gives you complete control over every aspect of style, you end up confusing the newbies, make it overly complicated for the average person, and only really make the "I want complete control" folks happy. And you lose a larger market share than if you made a few key decisions for them instead.

The trick is to find the happy medium. Since most of these packages are GPL, we try to appeal to the larger market. I'm sure if you offered to pay someone, they'd be more than willing to custom write a portal for you. :)

I for one, am doing my best to get rid of NTS (Nested Table Syndrome) in whatever I write. :)

Have fun, Mad Moya
Logged

formerly Mad Moya
PfaBB - http://pfabb.lunabyte.com
Pages: 1 2 [3] 4 Reply Ignore Print 
YaBB SE Community  |  Development  |  Portal Discussion  |  First post!!! « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.052 seconds with 19 queries.