I have installed Delphi 10.2.2 and the Documentation tab is all stuffed up ( see picture ). I know there is a html template page for the welcome tab, but I can't remember for the life of me where that is and I actually need to modify the template? for the documentation. Can anyone help ? Thanks
I have installed Delphi 10.2.2 and the Documentation tab is all stuffed up ( see picture ). I know there is a html template page for the welcome tab, but I can't remember for the life of me where that is and I actually need to modify the template? for the documentation. Can anyone help ? Thanks
Ok, I found it in C:\Program Files (x86)\Embarcadero\Studio\19.0\Welcomepage, but I can't actually see what is wrong
ReplyDeleteIt's always useful to browse a few days back to look for similar posts.
ReplyDeletehttps://plus.google.com/109675536153721275254/posts/5E1m7C3HFMx has a link to a workaround.
Or just use the search ;)
ReplyDeletehttps://plus.google.com/photos/...
Lars Fosdal Ok scrolled back and back and then some more, the only post I can see is about the improvements to the Welcome page, but that doesn't address my screwed up page ! ????
ReplyDeleteEdit the documentation.htm and replace styles.css with styles_light.css.
ReplyDeleteFound it; thanks guys ... even though I detect just a hint of sarcasm ;-)
ReplyDeleteI did the following in:
ReplyDeleteC:\Program Files (x86)\Embarcadero\Studio\19.0\Welcomepage\en
Edit Documentation.htm and insert the one piece about the innerWidth
function setFrameURL(url)
{
if(url){
document.getElementById('load_html').src = url
$("#load_html").css("display", "block");
var height = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
$("#load_html").css("height",(height)+"px");
var width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
$("#load_html").css("width",(width)+"px");
It works and takes up the entire page after you restart the IDE.
Tony Danby No sarcasm intended. Just a tip. That other post I linked, had practically the same picture as yours.
ReplyDeleteTony Danby No sarcasm as well, when I typed that into the search it showed 2 posts that contained the fix.
ReplyDeleteLet you all off and thanks 😀
ReplyDeleteAchim Kalwa or styles_dark.css :)
ReplyDelete