I have a baselayout.jsp defined as:
<definition name=”.baseLayout” path=”/webpages/baseLayout.jsp”>
<put name=”browserTitle” value= Reporting Portal” />
<put name=”headerTile” value=”/webpages/header.jsp” />
<put name=”bodyTile” value=”/webpages/Blank.jsp” />
<put name=”detailTile” value=”/webpages/Blank.jsp”/>
</definition>
And then use it as:
<definition name=”welcomeTiles” extends=”.baseLayout”>
<put name=”browserTitle” value=”Welcome”/>
<put name=”bodyTile” value=”/webpages/Welcome.jsp”/>
<put name=”detailTile” value=””/>
</definition>
I have the header.jsp background color set to blue, but all other pages are white. But everytime I get to the tiles page, the entire page is blue. Why is the color defined in one page “bleeding” onto all other pages?
Here is how I have the color defined:
<style type=”text/css”>
<!–
body,td,th {
color: #F0F0F0;
}
body {
background-color: #00CCFF;
}
–>
</style></head>