Adam,
The background is now white. Thanks... What changes were made?
We are getting closer. For the image gallery, I am getting an error. It turns out that it is path error. So a little playing I came up with the correct values. Below are the details, as it applies to DNN.
In the Web.Config is this value
UseDNNRootImageDirectory="True" , then no error, but if set to false, there is an error. I change the web.config custom error property to see the actual error. It turned out to be a path error. So to correct this issue:
web.config
UseDNNRootImageDirectory="false"
default.config
<security name="ImageGalleryPath">~/portals/0/member_images</security>
/portals = Dnn Portal Directory
/0 = The current Portal number
/member_images = the directory I created for my user uploads
Here is an additional question: If I have multiple sites the portal value would change, i.e., 0, 1,2, etc., does the security configs take DNN tokens, such as [PORTALID] (I think that is the token it uses).
--
Regards,
Steve Topilnycky