I am using a custom form layout for one of my document types. This form is using jQuery tabs. That functionality is working as expected.
I am also using a style block at the top of the custom form layout source to keep the design clean and simple. In the style definition there is a reference to an image
#tabs-min .ui-tabs-nav .ui-state-active {
background: transparent url("[ImagePathReference]/uiTabsArrow.png") no-repeat bottom center;
border: none;
}
My issue is with the [ImagePathReference]. If I simply use the WSYWIG and insert an image into the body of my form, the image displays with no problem on the page. If I copy the path of that image into the above style definition nothing happens. Looking at the Console output for the page I am seeing:
[sitepath]/CMSMessages/AccessDenied.aspx?resstring=The%20dialo…ers%20are%20not%20consistent,%20please%20try%20to%20reopen%20the%20dialog. 403 (Forbidden)
Removing my call from the CSS makes that go away. Any information about what permission I may be violating would be appreciated.