• Resolved samalouf

    (@samalouf)


    Alex, incredible work you did! I worked with many templates, yours is just amazing: powerfull and so simple.

    My slider doesn’t turn automatically, how can I make that? Also, any possibility to make title and excerpt appear over the pics in the slider instead than underneath?

    Thanks

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thanks!

    In /inc/featured.php on line 67, locate:

    slideshow: false,

    Change that to:

    slideshow: true,

    And there you go ??

    As for the title on top of the image, you would need to wrap title + description in a div, put it inside the featured image div, and put something like:

    background: rgba(0,0,0,0.7); position: absolute; bottom: 0; right: 0; left: 0;

    On it.

    Thread Starter samalouf

    (@samalouf)

    Thanks for slideshow solution.

    For the title, I don’t know how to wrap and put that in the featured image, put I’ll try to find out.

    I also asked you another question about top nav, in a separate post, I’d be glad to know if you have any solution… Thank you.

    Hi!
    Now that I know how to activate featured posts slider, I’d like to know if I can just change height of posts’ thumbnails.
    Or better, I’d like to fix those two things into child theme. How can I?
    Thanks for reply.

    Alexander Agnarson

    Thanks for your help!
    ———————————-
    Thanks!

    In /inc/featured.php on line 67, locate:

    slideshow: false,

    Change that to:

    slideshow: true,

    And there you go ??

    As for the title on top of the image, you would need to wrap title + description in a div, put it inside the featured image div, and put something like:

    background: rgba(0,0,0,0.7); position: absolute; bottom: 0; right: 0; left: 0;

    On it.

    Hi!
    Just to let you know how simple it was to accomplish my request by following the simple rules of creating a child theme. Nothing more, nothing less.
    Thanks again Alx!

    my slider is not working, and I did the above procedure. can someone help me?

    Hello:

    As for the title on top of the image, you would need to wrap title + description in a div, put it inside the featured image div, and put something like:

    background: rgba(0,0,0,0.7); position: absolute; bottom: 0; right: 0; left: 0;

    i would like to move the featured title text on my home page slider above the image as well. what page do i make the edit in, and can you explain in detail how to add this code into my edit?

    ‘background: rgba(0,0,0,0.7); position: absolute; bottom: 0; right: 0; left: 0;’

    Thx in advance!

    for me this file only has 63 lines
    what should i do? ??

    Hey guys!

    I am struggling with my slider which used to be manual and then I switched it to automatic. As you can see in the
    picture
    active-panel is fully visible with full opacity, and the left and right sides are faded with lower opacity, this is the code for that part:

    // Highlight Center Panel
    jQuery(window).resize(function() {
        var nextCenter = Math.ceil(jQuery(window).width() / 900);
        var prevCenter = Math.ceil((jQuery(window).width() - 900) / 900);
        jQuery(".grid-panel:eq("+prevCenter+")").addClass("active-panel");
    
        jQuery("#grid-next").click(function(){
            jQuery(".grid-panel").removeClass("active-pan+el");
            jQuery(".grid-panel:eq("+nextCenter+")").addClass("active-panel");
        });
    
        jQuery("#grid-prev").click(function(){
            jQuery(".grid-panel").removeClass("active-panel");
            jQuery(".grid-panel:eq("+prevCenter+")").addClass("active-panel");
        });
    }).resize();

    When I switch the slider from manual to automatic the lower opacity part is no longer working properly- It is not “fixed” to left and right side of the slider but it flows along with the slider.

    So how to keep lower opacity option “fixed” on the left and the right side of the slider when I switch the slider from manual to automatic?

    Grid Carousel:

    jQuery("#grid").carouFredSel({
        width: 5000,
        padding: 0,
        **auto: true,** - by defaulth it is set to false!
        prev: "#grid-prev",
        next: "#grid-next",
        items: {
            visible: 3,
            minimum: 1,
            start: -1
        },
        scroll: {
            items: 1,
            duration: 1000
        }
    });

    Any help is very much appreciated.
    Thank you

    Can you explain how to:

    As for the title on top of the image, you would need to wrap title + description in a div, put it inside the featured image div, and put something like:

    and where in the featured.php should I put “background”?

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Slider automatic’ is closed to new replies.