Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...skin prob? css and header graphics difficulties...skin prob? css and header graphics difficulties...
Previous
 
Next
New Post
9/9/2007 4:09 PM
 

Hi J,

good to hear that it works now! But is there a reason why you didn't store the image files in the skin directory? Do you need them for more than one DNN portal? You said the images are in a directory "outside of the DNN structure", but as you describe it further, it's in the root of the DNN directory, that is the directory where the DNN web.config file is in. Am I right?

Anyway, it's not necessary to write the absolute URL in the image path, e. g. <img src="www.domain.com/pngs/hdr-int-1.jpg" />, in fact this will cause you unneccessary work if you want to use the skin on two different servers, e. g. on a development server and a live server. You have two options to make the image path server independent:

  • If you need the header images for this specific portal only:
    Move the image directory (I think you called it pngs) into your skin directory (where your .ascx file is in) and access the images in the table of your .ascx file as follows:
    <img src="<%= SkinPath %>pngs/hdr-int-1.jpg" />
    <%= SkinPath %>
    is a DNN specific tag that DNN will replace with the current skin path (e. g. www.domain.com/Portals/0/Skins/MyDNN-Gray-variation/) at runtime.
  • If you really need the images in more than one portal, there is another way to make the image paths server independent:
    Leave the image directory where it is (if it's in the DNN root directory as I suppose) and access the images as follows:
    <img src="~/pngs/hdr-int-1.jpg" runat="server" />
    The ~ (tilda) is an ASP.NET specific character. ASP.NET (not DNN) will replace it with the applications'  current root directory at runtime, if you add the runat="server" attribute as well.
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...skin prob? css and header graphics difficulties...skin prob? css and header graphics difficulties...


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out