Forums

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

Home Forums CSS Nivo Slider Image problem!

  • This topic is empty.
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #150470
    folz83
    Participant

    Hi there,

    I am using nivo slider for the 1st time using a 960gs layout and the test webpage can be viewed at http://www.individualmantravels.com. The pictures are not loading and I am not sure what exactly the problem is…. I would appreciate any help I can get… !

    #150471
    whatsoever
    Participant

    Both your images and jquery.nivo.slider.pack.js are not found on the server, check your routes.

    #150472
    Paulie_D
    Member

    Definitely looks like an failure to upload issue.

    #150479
    folz83
    Participant

    @ whatsoever – Thanks for the response but I have checked the backend with my host and the images/jquery.nivo.slider.pack.js are there…. is this backend what you refer to as routes?

    #150483
    folz83
    Participant

    @Paulie_D Thanks for the response…… I have checked my code again and all seems to be in order…. (code hooking the slider up to the page is in order)…. still fishing for solutions. Any help appreciated……….

    #150484
    Paulie_D
    Member

    What he means is that although they may be linked in your HTML/CSS or <head>, the site can’t find them.

    For instance, your have this

    <link rel="stylesheet" href="nivo-slider.css" type="text/css">
    

    but it should probably be this

    <link rel="stylesheet" href="../css/nivo-slider.css" type="text/css">
    

    Likewise for your images

    <img src="images/slide1.jpg" alt="slide1">
    

    might be better as

    <img src="../images/slide1.jpg" alt="slide1">
    

    and so on for JS etc.

    #150486
    Paulie_D
    Member

    On another point, you seem to have the whole page wrapped in a header div. Is that right?

    …and you have css styles in the head ….you should realy move those to a separate stylesheet

    #150538
    folz83
    Participant

    @Paulie_D – Thank you so much for the assistance so far. I missed out the closing tag for the header div & I have corrected it now. I followed your suggestion and changed the link to the nivo slider stylesheet and the pictures appeared while previewing in browsers in dreamweaver. However, when I did it for the images (ie usedslide1 the images were not found so I left it as it is).

    I will move the css styles to a separate stylesheet & hope it makes a difference. Its just odd to me that when I preview the page in a browser in dreamweaver, I can at least see the pictures but once I put it in the backend of the website and check the address, the images and even the corporate logo (which has nothing to do with nivo slider) dont appear!!

    #150543
    Paulie_D
    Member

    Not sure I can help you any further.

    The resources (images & nivo CSS) do not seem to be loading on whatever server you are using or at the very least using teh same structure as locally.

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