for display only
Big Blue Interactive The Corner Forum  
Back to the Corner

Archived Thread

BBI Front page tweaked for mobile devices

Gary from The East End : Admin : 1/25/2015 9:10 am
Please look and give me some feedback
on a SG Note4  
ep in md : 1/25/2015 10:02 am : link
Main logo is fine but truncated on right-blue text. Scroll down and formatting is wonky (left 2/3 of screen is blank), scroll further and all looks good.
On an iphone6 plus  
Joey from GlenCove : 1/25/2015 10:07 am : link
Love the drop down menu.

Screen however is not aligned and about half of it is cut off
Gary,  
Giantology : 1/25/2015 10:22 am : link
just use a CSS media query to swap out the logo for a smaller one on small devices, or, use a CSS media query to make it so it doesnt go wider than it's container.

Right now you have h1.header set to a fixed width of 650px so it's always going to cause issues on mobile

I've volunteered my services before to help with design and front-end of BBI before, I'm always here to help if you need!
In fact,  
Giantology : 1/25/2015 10:24 am : link
I've messed around with the design of BBI personally in my own free time hoping to come up with stuff for my portfolio. Here's an example:
The Corner Forum modernized & re-imagined - ( New Window )
Thanks Giantology  
Gary from The East End : Admin : 1/25/2015 10:26 am : link
I figured I had to knock the CSS around a bit to make it work.
No problem  
Giantology : 1/25/2015 10:30 am : link
You could do something like:

Code:

@media (max-width: 649px) {
h1.header {
width: 100%;
height: auto;
}
.blogtitle img {
width: 100%;
height: auto;
}
}


I would recommend you use a different logo/image for the header on mobile though. And I would definitely recommend using live text for the "Latest News, Analaysis & Discussion..." text... better for SEO purposes!
The news and notes block seems to be causing the biggest issue  
Gary from The East End : Admin : 1/25/2015 10:52 am : link
The box doesn't adjust properly when you make the screen smaller. I think the code wants to put the picture underneath the headlines, but it gets shunted off to the side.
Yeah,  
Giantology : 1/25/2015 10:58 am : link
the setup of that area isn't really conducive to mobile devices.

There's a number of things you can do with the CSS and even HTML structure.

E.g. you could make that area stack -- so the photo is on top and the article headlines are below it.
Here's  
Giantology : 1/25/2015 11:00 am : link
an example of the stacking...
http://i.imgur.com/ydFkf8P.png?1 - ( New Window )
I think it is trying to stack  
Gary from The East End : Admin : 1/25/2015 11:04 am : link
And it's just not doing it properly.

I implemented the css you suggested and it seems to work better. I don't want to spend a ton of time on this design because I think we'll move to something different sooner rather than later, but I'd like to make it more mobile friendly in the interim.

I like your forum mockup. We plan to do a forum redesign as well, once we decide what direction to go in.
i know its a theme  
mattlawson : 1/25/2015 11:11 am : link
but at some point you should get on Bootstrap for ease of customization with stacking and grids. would be kindof a fun project if i had spare time. example grid layouts here.
Link - ( New Window )
RE: In fact,  
mattlawson : 1/25/2015 11:11 am : link
In comment 12108378 Giantology said:
Quote:
I've messed around with the design of BBI personally in my own free time hoping to come up with stuff for my portfolio. Here's an example: The Corner Forum modernized & re-imagined - ( New Window )



i like this. clean.
Thanks guys, glad you like the mock.  
Giantology : 1/25/2015 11:17 am : link
Gary, please do keep in touch when it comes to any new designs, would love to lend a hand or give my two cents to give back to the site.

There's so much that could be done to really make this site get to another level with user experience and engagement.
Giantology  
Eric from BBI : Admin : 1/25/2015 11:26 am : link
I'm really supportive of that.
RE: Thanks guys, glad you like the mock.  
Gary from The East End : Admin : 1/25/2015 11:39 am : link
In comment 12108426 Giantology said:
Quote:
Gary, please do keep in touch when it comes to any new designs, would love to lend a hand or give my two cents to give back to the site.

There's so much that could be done to really make this site get to another level with user experience and engagement.


Shoot me an e-mail at my webguy address and I'll let you know when we start working on the new design.
Any idea why this isn't working  
Gary from The East End : Admin : 1/25/2015 11:55 am : link
Code:


@media and (max-width: 320px) {

section.suf-mag-headlines{
display:none;
}

}

RE: In fact,  
AnishPatel : 1/25/2015 12:43 pm : link
In comment 12108378 Giantology said:
Quote:
I've messed around with the design of BBI personally in my own free time hoping to come up with stuff for my portfolio. Here's an example: The Corner Forum modernized & re-imagined - ( New Window )



Props to you Giantology. I really like the forum set up. Looks modern and has that clean crisp look to it.
Thank you sir!  
Giantology : 1/25/2015 1:00 pm : link
Still more could be done with it, that's just a something I put together in a few hours.
I might take that base look  
mattlawson : 1/25/2015 1:06 pm : link
And create a bootstrap skin, as a mockup for Gary. I notice the board is still in tables. Would be fun to play with a responsive and adaptive layout around a simple design like you have mocked up
Here's what I see  
mattlawson : 1/25/2015 1:10 pm : link



Header needs to decrease yet. Title/ column needs its width adjusted
I was thinking about boostrap for the forum  
Gary from The East End : Admin : 1/25/2015 1:12 pm : link
Although I still like tables for the actual thread list. I think you could reasonably call that tabular data.

My idea is to lose some of the columns based on screen size. Views, then comments, then maybe lose the usernames in the last posted and started b columns and lastly drop the ads.
The front page doesn't seem to be reacting to my @media selectors  
Gary from The East End : Admin : 1/25/2015 1:15 pm : link
Either I'm doing them them wrong or there's something overriding them in the theme.

A lot of the problem with the front page seems to be the News and Notes module, and I think we can just lose that for now if we go below 320px in width.
RE: The front page doesn't seem to be reacting to my @media selectors  
mattlawson : 1/25/2015 1:22 pm : link
In comment 12108506 Gary from The East End said:
Quote:
Either I'm doing them them wrong or there's something overriding them in the theme.

A lot of the problem with the front page seems to be the News and Notes module, and I think we can just lose that for now if we go below 320px in width.



I have my hands full with my baby right now but later today / tonight I'll check it out
And as you might be able to tell  
mattlawson : 1/25/2015 1:23 pm : link
Most of my interaction with BBI is on my phone these days. The forum pinching and expanding could seriously be addressed. But like many users I come right into the form I very rarely visit the homepage
Talk about your pieces of crap.  
Trophy Husband : 1/25/2015 5:45 pm : link
- Nelson Munce
G money  
mattlawson : 1/25/2015 5:52 pm : link
Make sure the @media queries are the last thing in the cascade
Gotta say Thanks! For all of your guys collaboration  
g-man lance : 1/25/2015 6:08 pm : link
On the best fan based website in the world!
No comment on front page  
NYDCBlue : 1/25/2015 7:56 pm : link
Don't visit it as often, so I don't really care as much. That being said, as long as you are optimizing for moble, the forum is fundamentally broken for moble users. It is the drop down menus. They do not work for moble since there is now way to hover.... Just making them on click at the least would be an improvement for mobile users.
RE: No comment on front page  
ctc in ftmyers : 1/25/2015 8:08 pm : link
In comment 12108947 NYDCBlue said:
Quote:
Don't visit it as often, so I don't really care as much. That being said, as long as you are optimizing for moble, the forum is fundamentally broken for moble users. It is the drop down menus. They do not work for moble since there is now way to hover.... Just making them on click at the least would be an improvement for mobile users.


this
I'm probably going to turn the responsive code off  
Gary from The East End : Admin : 1/25/2015 11:35 pm : link
The News and Notes section breaks the whole thing when you go to a smaller screen and none of my @media directives to fix or hide it have any effect.

There will be a new, responsive BBI front page designed from scratch sooner rather than later.

With respect to the forum and the menus, I'll be doing a rewrite of the forum code with a modern UI and a proper responsive menu, unless we go to an existing OS forum. More about that later in the week.

Thanks to everyone for your feedback.
on my nexus 6  
micky : 1/25/2015 11:51 pm : link
The front page is truncated to left and right side blank.
Back to the Corner