Home Analyst Portal
Options

Hide page titles

Magnus_Lundgren1Magnus_Lundgren1 Customer Adept IT Monkey ✭✭
Hello.

Is there a way to only hide the "All requests" heading on the portal page. 
And the "Request Form" heading on the RO page?






Best Answer

Answers

  • Options
    Magnus_Lundgren1Magnus_Lundgren1 Customer Adept IT Monkey ✭✭
    Thanks, managed to get it eventually :)

    $(window).load(function () {
        if (document.URL.indexOf("ServiceCatalog/RequestOffering") === -1) {
            return; 
        }
    	
    $("div.ro-description").css("visibility", "hidden").css("height", "0");
    $("div.panel-heading").css("visibility", "hidden").css("height", "0");
    $("h3").css("visibility", "hidden").css("height", "0");
    $("div.panel").css("margin-top", "0");
    $("h1.page_title").css("visibility", "hidden").css("height", "0");
    $("div.row").css("height", "0").css("border-bottom", "0px solid #b3b3b3");
    $(".task-panel").css("visibility", "hidden").css("height", "0");
    $(".task-panel-wide").css("visibility", "hidden").css("height", "0");
    
    });	

Sign In or Register to comment.