Okay
  Public Ticket #935758
Unable to change background image on index2 home page
Closed

Comments

  •  2
    Michael started the conversation

    I'm unable to find where I Can find the line of code to change the home image behind the logo


    Also the documtation is inncorect in some of the places and lines of code. I tried changing the map areas and it did but not it wont zoom in and place the arrow on the location. I have entered the correct long and lang

  •  850
    Jelly replied

    Hi,

    You don't see the images/logo.png in your index file?

    <div class="navbar-header page-scroll">
        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
        </button>
        <a class="navbar-brand normal" href="#home"><img src="images/logo.png" alt="uniform"/></a>
    </div>
    

    Go to images folder and replace your logo with example logo with same name, it will work.

    For the maps, please try again:

    • To change map, please change in line 233
    • To change pointer, please change in line 244
    • To change text, please change in line 256
    • To change pointer image, please change in line 282

    Best Regards,
    Jelly Team

  •  2
    Michael replied

    I'm still getting an error heres some photos

    http://imgur.com/a/5CZl8

    Regarding the map i have the map changed i just cant get the pointer to work 

    what do i need to add? Theres are the cordinates:  (31.601007, -94.649230)


            if ($('#map-header').length>0) 
    google.maps.event.addDomListener(window, 'load', init_contact);
            
            function init_contact() {
                var mapOptions = {
                    zoom: 11,

                    center: new google.maps.LatLng(31.601007, -94.649230), // Texas
                    disableDefaultUI: true,
                    styles: [


  •  850
    Jelly replied

    Hi,

    The slider image will need change it in: /uniform/css/uniform.css from line 4453.

    #owl-main .item:nth-child(1) {
      background: url('http://placehold.it/2489x1300');
    }
    #owl-main .item:nth-child(2) {
      background: url('http://placehold.it/2489x1300');
    }
    #owl-main .item:nth-child(3) {
      background: url('http://placehold.it/2489x1300');
    }

    For the maps, maybe you can provide ftp information and website url so I can check it?

    Best Regards,
    Jelly Team

  •  2
    Michael replied

    Does the photo need to be a url? how do i change it to an image from my folder? 

  •  850
    Jelly replied

    Hi,

    You can change it with similar:

    #owl-main .item:nth-child(1) {
      background: url('../images/-image-name');
    }
    #owl-main .item:nth-child(2) {
      background: url('../images/-image-name');
    }
    #owl-main .item:nth-child(3) {
      background: url('../images/-image-name');
    }

    Best Regards,
    Jelly Team