I am trying to make a web page with one background color. example:
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core"
xmlns:xc="http://www.ibm.com/xsp/custom"
style="background-color:rgb(0,85,165)" disableTheme="true">
</xp:view>
The result is a page with on top the oneui v2 color going from light blue to white and thereafter the color specified as background color. How can I get the result I want ? By the way , why is their an option for a background color for an xpage , when it doesn't apply that color?
edit : In chrome I found this : servername/xsp/.ibmxspres/.mini/css/@Da&@Ib&2Tdcore.css&2TdcoreLTR.css&2TddefaultTheme.css&2TddefaultThemeLTR.css&2Tdxsp.css&2TdxspLTR.css&2TdxspSF.css.css
body { color: rgb(34, 34, 34);
background-image: url(/domjava/xsp/theme/oneui/images/background.png); }
When I unmark this background image everything displays as it should. Still I don't know how to get this to work.
By the way the rest of my "webpage" is in a panel with a white background in which I use oneui. The idea was to get a blue border around the webpage. The page has a fixed size. The rest of your screen just colors blue.(the amount of blue will depend on the screenresolution ) Maybe there is a better way of dooing this ?