Okay
  Public Ticket #2339770
Slider
Closed

Comments

  • kapitikidsconnect started the conversation

    Hi there

    I can't work out where to edit the slider on my home page.

    It's been a while since I changed it and I just can't seem to find where to change it at all!

    Your assistance would be much appreciated!

    Maryanne


  •  1,603
    Barry replied

    Hi Maryanne,

    The slider can be edited by going to the "Pages" tab and edit the homepage. Below the page builder you'll find the slider field to edit your slides.

    In the following link you can find a screenshot of the slider below: 

    https://qreativethemes.com/docs/physio/#slider

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes

  • kapitikidsconnect replied

    Thank you.

    If i have images smaller than 1920 x 750 eg 1254 by 836 pixels what can i scale them to make them fit the page better.

    At present they are taking up too much room.

    Please take a look www.getbackinaction.co.nz

  •  1,603
    Barry replied

    You're welcome.

    To reduce the height of the slider you can use the following CSS code. This code can be added to the textarea under Appearance -> Customize -> Additional CSS:

    .jumbotron .carousel-inner > .item > img {
        object-fit: cover;
    }
    /* Mobile Screens */
    @media (max-width:768px) {
        .jumbotron .carousel-inner > .item > img {
            height: 300px;
        }
    }
    /* Tablet Screens */
    @media (min-width:769px) and (max-width:992px) {
        .jumbotron .carousel-inner > .item > img {
            height: 400px;
        }
    }
    /* Desktop Screens */
    @media (min-width:993px) {
        .jumbotron .carousel-inner > .item > img {
            height: 500px;
        }
    }
    

    The 300px height can be changed for mobile screens.

    The 400px height can be changed for tablet screens

    And the 500px height can be changed for desktop screens.

    Hope this helps.

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes

  • kapitikidsconnect replied

    Thank you.

    And can I change the colour of the fonts on individual slides?

    See attachment for example of where some font is too light

  •  1,603
    Barry replied

    You can change the font color by replacing that top heading text with the following line:

    <font color="red">This will be the heading text</font>
    

    The value red can be changed to your own needs.

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes