Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion

Here's a statement of the obvious: The opinions expressed here are those of the participants, not those of the Mutual Fund Observer. We cannot vouch for the accuracy or appropriateness of any of it, though we do encourage civility and good humor.

    Support MFO

  • Donate through PayPal

Ping Investor and/or Chip - something to try on your browser

edited December 2011 in Technical Questions
Both of you mentioned your browsers didn't display the discussions wide enough in your browsers that had a large viewport.


Goto to the discussions web page under wordpress (http://www.mutualfundobserver.com/discussions-3/)
Cut and Paste this code in the javascript console in chrome or whatever browser you have that has a console.
You can modify the width etc to experiment to see what you like and maybe the code can be changed in wordpress or vanilla based on your experimentation. I hi-lighted the container in green. It should persist through out your visit. I don't know what implications it will have viewing the other parts of the site. Change the number 1200 below to your optimal width.

Reload your page when you tire of viewing this way.


Uncomment the alert - if you want to see your viewport size.


jQuery(function(){
$=jQuery;
// alert('Window width: ' + jQuery(window).width())

$("#container").mouseover(function () {
$(this).css("background-color","green");
$(this).css("width","1300px");
});
$("#content").mouseover(function () {
$(this).css("width","1200px");
});
$("div#main").mouseover(function () {
$(this).css("width","1200px");
});
});

reply
- chip, - changing max-width to a 80% or getting rid of it might help

get rid of max-width in styles.css in vanilla dashboard design
ul.Discussions div.ItemContent a.Title {
/* max-width: 580px; */
}










Comments

  • bump (the recycled discussion)
  • Changing the width of the container really doesn't make much difference to me. The discussion titles still line break at basically the same point, so I don't gain much vertical real estate by stretching horizontally. There might be some changes we could make in the embedVanilla styles that would allow that to stretch more as well as possibly using a slightly smaller font for the discussion titles.
Sign In or Register to comment.