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