Can we break the forum out of the site design?

Can we break the forum out of the site design?

Various things about Spring that do not fit in any of the other forums listed below, including forum rules.

Moderator: Moderators

User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Can we break the forum out of the site design?

Post by Forboding Angel »

Please?

Forum in site is so 1990s. I don't care about that so much as that having to have it within the site boundries severely limits what we can do with the forum itself and also severely limits the site as well.
gajop
Moderator
Posts: 3051
Joined: 05 Aug 2009, 20:42

Re: Can we break the forum out of the site design?

Post by gajop »

The ability to go to the site/wiki from the forum is an essential navigability requirement.
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: Can we break the forum out of the site design?

Post by Forboding Angel »

Image

What does that have to do with anything?
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Can we break the forum out of the site design?

Post by smoth »

What do you suggest as a replacement?
User avatar
AF
AI Developer
Posts: 20687
Joined: 14 Sep 2004, 11:32

Re: Can we break the forum out of the site design?

Post by AF »

gajop wrote:The ability to go to the site/wiki from the forum is an essential navigability requirement.
We already do this with Mantis and you can access that easily from the top nav.

Design wise, a much simplified version of the top header that was full width, with a logo and a link to the main site, probably darker gray and monochrome, and none of the random images would work. All we'd need to do is specify the content width and let whatever is underneath it do whatever it wanted. Some absolute positioning and margin on the body header would mean we could just place a snippet somewhere in the theme for whatever software is used. No PHP, easy to maintain, no menu nav juggling, no spring site background container and weird curved corners etc
User avatar
AF
AI Developer
Posts: 20687
Joined: 14 Sep 2004, 11:32

Re: Can we break the forum out of the site design?

Post by AF »

Here it is if we remove the current top header:

Image

- Fully responsive by default
- Can be put anywhere without needing special PHP templating provisions
- Ultra lightweight
- Significantly faster to render in browsers
- Vastly increased maintainability and reduced complexity
- Works with every piece of web software installed on this server regardless of design
- Serves as a basic design starting point for a header for all pages outside of the homepage, put the nav menu links on the right hand side of the bar opposite the logo, and let the logo serve as a home button

Now of course this kind of header doesn't make sense on the homepage, and shouldn't be used there, but on the forums, Mantis, etc, it's a good way to tie together those sections to say this is the spring website, and this is how you get back to the rest of it

To test this, open up the dev tools and copy paste this into a new element at the bottom of the page:

Code: Select all

<div id="spring-thin-header" class="spring-thin-header">
    <div class="spring-thin-header-contents">
        <a href="/" class="spring-thin-header-logo"></a>
    </div>
</div>
<style>
html { margin-top:48px; }
.spring-thin-header {
    position: absolute;
    top: 1px;
    height: 48px;
    width: 100%;
    background: #222;
    color: #aaaaaa;
    border-bottom: 2px solid #555;
}
.spring-thin-header-contents {
    padding: 12px 0;
    margin: 0 auto;
    max-width: 968px;
}
.spring-thin-header-logo {
    background: transparent url(/images/logo.png) no-repeat;
    display: block;
    width: 50%;
    height: 24px;
    background-size: contain;
}
/* adjust forum header */
body {
padding-top:30px;
}
#phpbb #header {
display:none;
}
</style>
Here's Mantis:

Image

Perhaps with a very subtle background image and a monochrome version of the logo it would look even better and could be made thinner, moving from 48px tall to closer to 32px, but I think it looks great considering it took 10 minutes of kitbashing in a browsers editing tools
Attachments
Screen Shot 2015-06-01 at 18.34.23.png
(525.56 KiB) Not downloaded yet
Screen Shot 2015-06-01 at 18.33.56.png
(657.09 KiB) Not downloaded yet
User avatar
AF
AI Developer
Posts: 20687
Joined: 14 Sep 2004, 11:32

Re: Can we break the forum out of the site design?

Post by AF »

Here's a version 20px shorter that works better with Mantis:

Code: Select all

<div id="spring-thin-header" class="spring-thin-header">
    <div class="spring-thin-header-contents">
        <a href="/" class="spring-thin-header-logo"></a>
    </div>
</div>
<style>
html { margin-top:28px; }
.spring-thin-header {
    position: absolute;
    top: 1px;
    height: 28px;
    width: 100%;
    background: #222;
    color: #aaaaaa;
    border-bottom: 2px solid #555;
}
.spring-thin-header-contents {
    padding: 2px 0;
    margin: 0 auto;
    max-width: 968px;
}
.spring-thin-header-logo {
    background: transparent url(/images/logo.png) no-repeat;
    display: block;
    width: 50%;
    height: 24px;
    background-size: contain;
}
/* adjust forum header */
body {
padding-top:30px;
}
#phpbb #header {
display:none;
}
</style>
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: Can we break the forum out of the site design?

Post by Forboding Angel »

AF wrote:Here it is if we remove the current top header:

Image
This is an excellent first step! I'm a fan.
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Can we break the forum out of the site design?

Post by smoth »

I really don't want this change. I like the links being there. I think it is SLOPPIER to have to go back to the main site in order to access the wiki. There, I objected. Feel free to ignore me.
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: Can we break the forum out of the site design?

Post by Forboding Angel »

Dude.... The links would be there, its obviously a navigation bar :|
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: Can we break the forum out of the site design?

Post by Forboding Angel »

AF wrote: - Serves as a basic design starting point for a header for all pages outside of the homepage, put the nav menu links on the right hand side of the bar opposite the logo, and let the logo serve as a home button
gajop
Moderator
Posts: 3051
Joined: 05 Aug 2009, 20:42

Re: Can we break the forum out of the site design?

Post by gajop »

gajop wrote:The ability to go to the site/wiki from the forum is an essential navigability requirement.
As I said before and smoth repeats, navigation matters.

I see no benefit to your changes... none that most users will care about anyway.
Losing the navigation links WILL be a problem, so unless you have a solution that offers an exact replacement (and not just an example bar with a link to the homepage), I'm fully against this change.
User avatar
Silentwings
Posts: 3720
Joined: 25 Oct 2008, 00:23

Re: Can we break the forum out of the site design?

Post by Silentwings »

I agree too, removing the site navigation bar is bad.
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: Can we break the forum out of the site design?

Post by Forboding Angel »

Frigging facepalm...

It's obviously a navigation bar.

:evil: :evil: :evil:

Good god comeon dude, do we look like bleeding idiots? What the hell kind of site puts you in their forum with ONLY a link back to the main site (Hint, not any good ones)?

This is what I mean when I say short sighted. Also, AF frigging said it was a navigation bar!
AF wrote: - Serves as a basic design starting point for a header for all pages outside of the homepage, put the nav menu links on the right hand side of the bar opposite the logo, and let the logo serve as a home button
Look I don't really understand what the disconnect is here... Things were pretty clear. AF spent 2 minutes making a mockup of what the bar could look like in general (without links, because any bleeding idiot can see that it's a navigation bar), but instead of reading anything he wrote, you only focus on the example image. Fucking hell.
User avatar
Silentwings
Posts: 3720
Joined: 25 Oct 2008, 00:23

Re: Can we break the forum out of the site design?

Post by Silentwings »

It's obviously a navigation bar.
So far you've confused all 3 who replied so repeating the same statement with added smileys is unlikely to make anything clearer.
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: Can we break the forum out of the site design?

Post by Forboding Angel »

Here, does this make it more clear? I'm not sure how much more clear the words "Navigation Bar" can get.

No this isn't necessarily what it would look like, I just hodge podged some shit together for the sake of example:

Image
gajop
Moderator
Posts: 3051
Joined: 05 Aug 2009, 20:42

Re: Can we break the forum out of the site design?

Post by gajop »

I'm OK with losing the banner image. How will it work when scrolling?
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: Can we break the forum out of the site design?

Post by Forboding Angel »

I would like for it to stick to the top the entire time, that way there is no need to ever scroll to the top to get to those links. That's my preference. Thoughts?
gajop
Moderator
Posts: 3051
Joined: 05 Aug 2009, 20:42

Re: Can we break the forum out of the site design?

Post by gajop »

Maybe that would be good, but it also makes sense to have "Quick Links", "FAQ", "Notifications", etc. the thing that's always on top.

I don't feel strongly about either option. I'd have to wait and try it first.
User avatar
Forboding Angel
Evolution RTS Developer
Posts: 14673
Joined: 17 Nov 2005, 02:43

Re: Can we break the forum out of the site design?

Post by Forboding Angel »

Quick links up there would be a nifty thing to have, especially for the sake of "Active topics" cause I use that ALL the time.

Tbh I'm not gonna raise a big stink either way, I would simply like to break the forum out of the site design. It would solve so many background problems.
Post Reply

Return to “General Discussion”