• Hi there,

    I’m loving Customizr theme however I’ve been struggling with putting the slider right underneath the menu. Can you please help me out with that? Also I don’t want to have a big space between the slider and the rest of the content on the homepage. How can I squeeze all that? Thanks for help!

Viewing 5 replies - 1 through 5 (of 5 total)
  • can you give a URL to your website so me and other people can take a look at it and get a vision of your site and help you better? ??

    Thread Starter patryqa

    (@patryqa)

    Sure. Here it is:
    tedxuclwomen.com

    This can be done by changing values for line-height, but you must be carefull because slider is resposive (for better adapting to different browser sizes), so you must include @media queries to make your change work on all screens. For smart phones this is the default Customizr css code where you can change height values in px

    @media (max-width: 480px) {
      .carousel .item {
        line-height: 190px;
        overflow: hidden;
        min-height: 190px;
     }
    }

    and for big desktop screens

    @media (min-width: 1200px) {
    .carousel .item {
        line-height: 500px;
        overflow: hidden;
        min-height: 500px;
     }
    }

    I suggest you read this snippet that explains this much better and in details.

    Thread Starter patryqa

    (@patryqa)

    Thank you tomaja for your answer. So I pasted this codes into Custom css code in Customise and nothing changed. I was expecting the header to be right underneath the header. I Change the pixel values to smaller and nothing changed either. Can you please tell me how I can manipulate this to move the slider up and all the rest of front page content right underneath the slider? I would appreciate your help. I’m new to CSS but I think it’s time for me to learn:)

    I should be working, at least it did when I was checking with Google Chrome Inspector. Your slider images are now within normal size, no more gap ?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Slider – making the spaces smaller’ is closed to new replies.