New Homepage design
-
So why not leave it and maybe add another 5-10% more space?
Or .. if you are in the mood to experiemnt .. why not add the menu to the right? This would allow it to take as much of the free space it needs.
To make this clear .. I am not saying "the new design is bad because .. reasons" .. I can only report my impression of as a user of a "big" screen (24" @ 1920x1080) and can say it feels awkwars when the content is split all over the screen .. having to constantly move my eyes over a large distance as the "relevant" and "important" functions are now split more then nessesary.
-
So why not leave it and maybe add another 5-10% more space?
Or .. if you are in the mood to experiemnt .. why not add the menu to the right? This would allow it to take as much of the free space it needs.
To make this clear .. I am not saying "the new design is bad because .. reasons" .. I can only report my impression of as a user of a "big" screen (24" @ 1920x1080) and can say it feels awkwars when the content is split all over the screen .. having to constantly move my eyes over a large distance as the "relevant" and "important" functions are now split more then nessesary.
@cimba007 @hek fine by me. I take issue with a width that forces line breaking of menu entries when not required by physical limitations. And the old design did. Hence my complaint that it was too narrow for comfort.
And since I presume you use a mac (with its ridiculous window manager) let's meet in the middle, widening the design enough to accommodate reasonable long article titles for the left hand menu without line breaking while permitting people that for various reasons don't want or can't tilt the display nor resize the browser. -
I like your idea ;-) and I totally agree that breaking lines when there is enough space is not a good design.
And .. I would never ever use a mac ;-)
And you are right .. I can't tilt my screen and I am not willing to change my browser size for one tab out of ~25.
Even if it might be obvious .. if the title is too long to fit the layout .. maybe choose a shorter, more concisely title ;-)
-
I like your idea ;-) and I totally agree that breaking lines when there is enough space is not a good design.
And .. I would never ever use a mac ;-)
And you are right .. I can't tilt my screen and I am not willing to change my browser size for one tab out of ~25.
Even if it might be obvious .. if the title is too long to fit the layout .. maybe choose a shorter, more concisely title ;-)
@cimba007 as you can see from my picture, judging by your standards "advanced build options" would then be a too long title, and if that is the case, we would need to provide an on screen legend to explain all the abbreviations we would have to use just to keep the menu "sane". And then we are into really bad page design ;)
-
@hek not sure, menu for me is the main site vertical list of topics. The forum layout I don't really mind as I can zoom the page to make it more appealing to me even if you revert back to the old layout. But in the main site, zooming would not help as the contents was forced to adapt to the layout.
-
Yeah .. "advanced build options" should in every case fit there :dancer:
@hek: If this is your "real" screen size I can totally understand why this is no issue for you at all :D
It looks a "little bit" packed but still much more accessible then splitting. I want to search? Top right corner .. I want to read the most recent message? Top right .. wanne check download area? Guess what .. -
I would be more happy with 10-15% but I think I can live with it. Would be even more awesome if this could be set as a "preference" on a per user basis .. but this would be too much to ask :)
PS: Can u tell me where you have added the padding? (in the css file?!)
-
10% och each side is way too much on smaller screens.
You'll have to greasemonkey in your padding changes on the #content div.
Or simply remove the width: 100% !important on it to get the old behaviour back (but that also affects the menu... which might not a problem for your screen size).
-
10% och each side is way too much on smaller screens.
You'll have to greasemonkey in your padding changes on the #content div.
Or simply remove the width: 100% !important on it to get the old behaviour back (but that also affects the menu... which might not a problem for your screen size).
-
This is just "balm for the eyes" .. I can absolutelty life with tinkering with greasemoneky ;-)
-
Well .. overwriting an !important doesn't seem to be this easy .. :D
The best I could come up with:
// ==UserScript== // @name New Userscript // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://forum.mysensors.org/* // @grant none // ==/UserScript== function addNewStyle(newStyle) { var styleElement = document.getElementById('styles_js'); if (!styleElement) { styleElement = document.createElement('style'); styleElement.type = 'text/css'; styleElement.id = 'styles_js'; document.getElementsByTagName('head')[0].appendChild(styleElement); } styleElement.appendChild(document.createTextNode(newStyle)); } (function() { 'use strict'; // Your code here... addNewStyle('.container { width: 55% !important;}'); //$(".container").removeAttr("width"); })();
