Author Topic: What happened to the forum? Did it lose some weight?  (Read 6394 times)

0 Members and 1 Guest are viewing this topic.

Offline ArtlavTopic starter

  • Frequent Contributor
  • **
  • Posts: 750
  • Country: mon
    • Orbital Designs
What happened to the forum? Did it lose some weight?
« on: August 12, 2015, 07:30:24 pm »
Unless my memory tricks me, the forum was full-screen a few days ago, but now it's a thin ribbon in the middle of the screen. Looks very unnatural.

Anyone else is getting that problem?
If so, is it being worked on, or is that something intentional?
 

Offline ElektroQuark

  • Supporter
  • ****
  • Posts: 1244
  • Country: es
    • ElektroQuark
Re: What happened to the forum? Did it lose some weight?
« Reply #1 on: August 12, 2015, 07:34:21 pm »
No ribbons here.

Offline Seekonk

  • Super Contributor
  • ***
  • Posts: 1940
  • Country: us
Re: What happened to the forum? Did it lose some weight?
« Reply #2 on: August 12, 2015, 07:52:11 pm »
Check the screen magnifier setting in your browser.  I don't have the delft touch I used to have and the pad is getting worn out.  My finger will lightly rest on the touch pad and web pages will change as I am writing a post, screen sizes will change and a whole lot of annoying crap will happen.  Like to disable everything but the basics.
 

Offline orbiter

  • Frequent Contributor
  • **
  • Posts: 619
  • Country: gb
  • -0 Resistance is Futile
Re: What happened to the forum? Did it lose some weight?
« Reply #3 on: August 12, 2015, 07:54:51 pm »
I noticed the same thing a week or so ago, thought it was either by design or something to do with the last two Firefox updates, but nope..  IE shows pages in the same way.  Can't say it bothers me though.
 

Offline retiredcaps

  • Super Contributor
  • ***
  • Posts: 3575
  • Country: ca
 

Online PlainName

  • Super Contributor
  • ***
  • Posts: 7035
  • Country: va
Re: What happened to the forum? Did it lose some weight?
« Reply #5 on: August 12, 2015, 10:00:30 pm »
Quote
Anyone else is getting that problem?

I get something probably related: the forum is now fixed width whereas before it used whatever your browser window width was. So now, using the same browser window size as beofre, I either lose the right side of the posts or I can see all the text but not who was posting.

No idea why anyone thinks fixed width is a good idea. Just shows a lack of understanding that whatever the developer/author uses isn't what world+dog uses.
 

Offline c4757p

  • Super Contributor
  • ***
  • Posts: 7799
  • Country: us
  • adieu
Re: What happened to the forum? Did it lose some weight?
« Reply #6 on: August 12, 2015, 10:03:42 pm »
Indeed, the forum is still fixed-width. Despite even Dave agreeing that it's bad, his web kiddies have apparently still not corrected it.

Anyone who thinks it's not a narrow ribbon - try a larger monitor.
No longer active here - try the IRC channel if you just can't be without me :)
 

Offline mariush

  • Super Contributor
  • ***
  • Posts: 5105
  • Country: ro
  • .
Re: What happened to the forum? Did it lose some weight?
« Reply #7 on: August 12, 2015, 10:27:13 pm »
The problem is in /forum/Themes/default/css/index.css  :

Code: [Select]
div#wrapper {
    margin: 0 auto;
    max-width: 1045px; <-----
    min-width: 1045px; <-----
}

Delete or comment out those , refresh the page and the forum should now be full window width.
« Last Edit: August 12, 2015, 10:29:45 pm by mariush »
 

Online PlainName

  • Super Contributor
  • ***
  • Posts: 7035
  • Country: va
Re: What happened to the forum? Did it lose some weight?
« Reply #8 on: August 12, 2015, 11:48:09 pm »
Quote
Delete or comment out those , refresh the page and the forum should now be full window width.

Blinding. Works just like you say :)

Is there a way to have this automatically override all pages (under firefox)? I am not a web developer so know nothing of this stuff.
 

Online PlainName

  • Super Contributor
  • ***
  • Posts: 7035
  • Country: va
Re: What happened to the forum? Did it lose some weight?
« Reply #9 on: August 13, 2015, 12:15:46 am »
Quote
Is there a way to have this automatically override

Indeed! In the profile directory, create a directory 'chrome' if it doesn't already exists, and in there create userContent.css (if that doesn't already exist). In userContent.css add:

Code: [Select]
@-moz-document domain(eevblog.com) {

div#wrapper {
    margin: 0 auto;
    max-width: 1045px;
    min-width: 800px !important;
}
}

Restart Firefox and job's a good'un. This example sets a new minimum 'cos that's what bugs me, and you could do the same for the max. Maybe someone with a clue can say how to remove those two altogether...
 

Offline c4757p

  • Super Contributor
  • ***
  • Posts: 7799
  • Country: us
  • adieu
Re: What happened to the forum? Did it lose some weight?
« Reply #10 on: August 13, 2015, 12:22:16 am »
Maybe someone with a clue can say how to remove those two altogether...

Code: [Select]
min-width: 0 !important;
max-width: none !important;
No longer active here - try the IRC channel if you just can't be without me :)
 

Offline EEVblog

  • Administrator
  • *****
  • Posts: 38035
  • Country: au
    • EEVblog
Re: What happened to the forum? Did it lose some weight?
« Reply #11 on: August 13, 2015, 12:26:27 am »
The problem is in /forum/Themes/default/css/index.css  :

Code: [Select]
div#wrapper {
    margin: 0 auto;
    max-width: 1045px; <-----
    min-width: 1045px; <-----
}

Delete or comment out those , refresh the page and the forum should now be full window width.

OK, I've removed those lines. Still the same for me.
 

Offline ArtlavTopic starter

  • Frequent Contributor
  • **
  • Posts: 750
  • Country: mon
    • Orbital Designs
Re: What happened to the forum? Did it lose some weight?
« Reply #12 on: August 13, 2015, 12:46:40 am »
OK, I've removed those lines. Still the same for me.
I still see them in the page's code.
Maybe you didn't remove it in every place?
Search all files for "This division wraps the entire forum when a forum width is set.", the problem should be below it.
 

Offline ivaylo

  • Frequent Contributor
  • **
  • Posts: 661
  • Country: us
Re: What happened to the forum? Did it lose some weight?
« Reply #13 on: August 13, 2015, 04:15:46 am »
Still the same for me.
Now delete your browser's cache (different browsers do it differently, find the settings for yours).
 

Offline mariush

  • Super Contributor
  • ***
  • Posts: 5105
  • Country: ro
  • .
Re: What happened to the forum? Did it lose some weight?
« Reply #14 on: August 13, 2015, 04:51:42 am »
Keep Shift pressed and click on the reload page button (or Shift+F5), that should work with most browsers, forces them to reload all resources (html, stylesheets, javascript, images), ignoring cache..\
 

Offline ArtlavTopic starter

  • Frequent Contributor
  • **
  • Posts: 750
  • Country: mon
    • Orbital Designs
Re: What happened to the forum? Did it lose some weight?
« Reply #15 on: August 13, 2015, 07:47:29 am »
Looks good now, thanks!  :-+
 

Offline Zero999

  • Super Contributor
  • ***
  • Posts: 19672
  • Country: gb
  • 0999
Re: What happened to the forum? Did it lose some weight?
« Reply #16 on: August 13, 2015, 07:52:44 am »
Looks good to me too.
 

Online PlainName

  • Super Contributor
  • ***
  • Posts: 7035
  • Country: va
Re: What happened to the forum? Did it lose some weight?
« Reply #17 on: August 13, 2015, 09:58:08 am »
Maybe someone with a clue can say how to remove those two altogether...

Code: [Select]
min-width: 0 !important;
max-width: none !important;

Blinding, thanks very much  :-+
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf