I'm trying to insert a couple of style properties in my page.jsp.
Probably I'm missing a step of two because the properties aren't showing.
The steps I took.
1. I made a new style "JMOuders".
2. I added 2 style properties. One images property has the
label "image". One color property has the label "header_color"
3. Made a page.jsp containing:
<c:set var="currentPage" value="${presentationcontext.page}" />
<%-- background home --%>
<wm:presentationProperty label="image" var="backgroundImage" page="${currentPage}" />
<wm:presentationProperty label="header_color" var="backgroundColor" page="${currentPage}" />
${backgroundImage.url}
${backgroundColor}
4. I linked the page.jsp and style "JMOuders" to my homepage.
These both things are done correctly since the lay-out is
correct and I can change my color and image at my page.
What am I missing?
Greetings, Bart