helloHow can we put the image header above the menus?I want the picture at the top (above the )please help
Try this at “Startup Script” under “Client Scripts” → “Global” → “Pages with header/footer”:$(document).ready(function() {
$(“.main-header”).before(“
Your Logo Image Goes Here
$(“.top-logo”).css({“position”: “relative”, “top”: “0”, “width”: “100%”, “height”: “50px”});
$(“.main-sidebar”).css({“position”: “absolute”, “top”: $(“.top-logo”).outerHeight()});
$(“.content-wrapper”).css({“position”: “static”, “width”: “100%”});
});I know this is not perfect 100% as you wish, so please be wise, you need to improve it by yourself.
hello
I want a picture instead of writing
$(“.main-header”).before(“
Your Logo Image Goes Here
Change:
$(“.main-header”).before(“
Your Logo Image Goes Here
$(“.main-header”).before(“
Excellent, works successfully. Thank you.Now how to control the length and width of the image?
Change this part:
“height”: "50px"to your actual image height.
Thank you so much
Now excellent works successfully// Write your global startup script here
// document.write(“page loaded”);
$(document).ready(function() {
$(“.main-header”).before(“
$(“.top-logo”).css({“position”: “relative”, “top”: “0”, “width”: “100%”, “height”: “200px”});
$(“.main-sidebar”).css({“position”: “absolute”, “top”: $(“.top-logo”).outerHeight()});
$(“.content-wrapper”).css({“position”: “static”, “width”: “100%”});
});
hello
There is a problem opening some pages
Do not open full pagescompact : PHPMaker+PHP Report MakerIf you disable this line:
//$(“.main-sidebar”).css({“position”: “absolute”, “top”: $(“.top-logo”).outerHeight()});
Works but the image is not complete on the page// Write your global startup script here
// document.write(“page loaded”);
$(‘.ew-rpt-grand-summary:has(td > span.ew-summary-count)’).addClass(‘d-none’);// Write your global startup script here
// document.write(“page loaded”);
$(document).ready(function() {
$(“.main-header”).before(“
$(“.top-logo”).css({“position”: “relative”, “top”: “0”, “width”: “100%”, “height”: “200px”});
//$(“.main-sidebar”).css({“position”: “absolute”, “top”: $(“.top-logo”).outerHeight()});
$(“.content-wrapper”).css({“position”: “static”, “width”: “100%”});
});What’s the solution ?
Make sure you have already implemented it also into PHP Report Maker project side.
Yes put code in PHP Report Maker and PHPmaker
The same problem is in PHP Report Maker
Especially with graphs
saleh wrote:
Do not open full pagesWhat did you mean by “do not open full pages”? Did you see the error message? If so, post here for more discussion. If there are no error message in the web app side, try to do “View Page Source” from your browser, and check also whether any error message from that page source.
The problem is only in Chrome browserBut the Explorer browser works successfullyThere are no error messagesI see Debug :him at the end of the page in Explorer browser There is no errorBut in Google Chrome browser I can not see Debug
Make sure you have already successfully updated your Google Chrome browser to the latest version, and then try again. If the problem remains, please try to “Clear browsing data…” from “More Tools” menu of your Google Chrome, and then try also again.
helloGoogle Chrome browser latest version and Clear browsing dataThe same problemSolve there another solution?
mobhar wrote:
I know this is not perfect 100% as you wish, so please be wise, you need to improve
it by yourself.
For PHP Maker 2020 :$(document).ready(function() {
$(“.sidebar”).before(“
$(“.nyot-logo”).css({“color”: “blue”, “text-shadow”: “3px 2px red”, “border”: “3px solid green”, “text-align”:“center”, “position”: “relative”, “top”: “0”, “width”: “100%”, “height”: “100%”});
});
I USE PHP Maker 2020
Fail
The image does not appear and there is no error
// Write your global startup script here
// document.write(“page loaded”);
$(document).ready(function() {
$(“.sidebar”).before(“
//This is for CSS or you can disabled it
$(“.nyot-logo”).css({“color”: “blue”, “text-shadow”: “3px 2px red”, “border”: “3px solid green”, “text-align”:“center”, “position”: “relative”, “top”: “0”, “width”: “100%”, “height”: “100%”});
});