Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #110631
    Knut
    Participant

    Dear friends of support,

    If possible, I would appreciate any help in the following two issues:

    1. Space around text within the entry box is rather too much. Is there a way to reduce it? Especially the space above the entry text head line.

    2. Don’t need the bullet points and therefore the space of the box. So omit it and have the white space below the last line of the entry text reduced.

    Omit of the bullet points (active and regular dots) is done via CSS
    #feature-slider .cycle-pager span.cycle-pager-active {
    display: none;
    }
    but the space will not be saved.

    The arrows I would like to have in the used or similar way, but they need not to be in the same line as the dots (in order to save the space). Is it possible to have them a line up or someone else, or is there another way of manually change the slider images?

    That’s it.
    Appreciate any help and have a great day!

    Regards,
    Knut

    #110643
    Pratik
    Participant

    Hi @Knut,

    1. Space around text within the entry box is rather too much. Is there a way to reduce it? Especially the space above the entry text head line.

    Try following code:

    
    #feature-slider .entry-container {
        padding: 0;
    }
    
    

    2. Don’t need the bullet points and therefore the space of the box. So omit it and have the white space below the last line of the entry text reduced.
    Use following code:

    
    #feature-slider .cycle-prev, #feature-slider .cycle-next {
        bottom: 30px;
    }
    

    Increase/decrease 30px to push it further up/down as your requirement.

    If this does not work, you need to post in your site url?
    Regards,
    Pratik

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Responsive Pro: Slider Entry Content Box’ is closed to new replies.