Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Loading images

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #149793
    lrelia
    Participant

    Hey,guys.I wonder if there is any way can I use the image in my image folder,which is a different folder of my css file

    #149797
    Paulie_D
    Member

    You can link to any folder on your site as long as you use the right address.

    To link to images in the folder one level below html

    <img src="../images/pic.gif">
    

    to go 2 levels below

    <img src="../../images/pic.gif">
    

    to link to a different folder on same level

    <img src="../different_folder/pic.gif">
    

    That generally the way to do it.

    #149801
    lrelia
    Participant

    Thank you so much^ ^

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Other’ is closed to new topics and replies.