Viewing 6 replies - 1 through 6 (of 6 total)
  • The css from your theme is stretching the width of the image. Add this to the css of your theme to fix it.

    #nwm-outer .nwm-destination-list img, #nwm-outer span.nwm-circle {
    width: auto !important;
    }

    You can change the height of the map by modifying the css file as well.

    #nwm-outer .nomad-world-map {
     height: yourvalue !important;
    }
    
    .nwm-destination-list {
     height: yourvalue !important;
    }

    There is currently no way to disable both the tooltip/slider, or make it auto scroll.

    Thread Starter architeqt

    (@architeqt)

    Hi,

    Thanks for the reply!

    The first bit of code worked great to fix the thumbs!

    The second one worked, but it changed the height of the map itself… I would just like to change the height of the white area under the map to be smaller, since I won’t have a description there, and right now it looks proportionally far too big…
    http://www.wanderluster.net/gallery/ukraine-the-black-sea/

    Thanks!!
    Samer

    Try this

    .nwm-destination-list {
    min-height:0 !important;
    height: whatever !important;
    margin: 20px 0 0 0 !important;
    }
    Thread Starter architeqt

    (@architeqt)

    Thank you!! This worked great!

    Is there also a way to control the font size of the dates in that footer area? I’d like them to be a bit smaller. Thanks for all your help!

    Samer

    Try this:

    #nwm-outer p.nwm-travel-schedule {
    font-size:12px;
    }
    Thread Starter architeqt

    (@architeqt)

    Perfect, thank you!

    Samer

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Thumbnail problem’ is closed to new replies.