Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author MatthewRuddy

    (@matthewruddy)

    Hi Zelen, try putting the slideshow inside the code below.

    <div align="center">
        .. Slideshow code goes here ..
    </div>

    Does that work?

    Thread Starter zelen

    (@zelen)

    Hi Matt,
    Where would I put that exactly? I tried to put it into the Child Theme header.php, but it didn’t work.
    Zelen

    Plugin Author MatthewRuddy

    (@matthewruddy)

    Use the code to replace the code you’re currently using to display the slideshow (which isn’t centred).

    Hi Matthew, I’ve tried to add that code into the ‘Post’ page on my site (I have Responsive Grid Premium theme) but it’s not centralising the slider and i’m left with some text showing on the live site:

    <div align=”center”>

    </div>

    Any other ways I can do this?

    Here is my site which is currently in development https://www.emmacarpendale.co.uk

    Many thanks,

    Emma

    Thread Starter zelen

    (@zelen)

    This is what I have in my header:
    <?php
    if ( is_front_page() ) {
    if ( function_exists( “easingsliderlite” ) ) {
    easingsliderlite();
    }
    }
    ?><?php
    It is here that I would put the div you suggest?
    Zelen

    Plugin Author MatthewRuddy

    (@matthewruddy)

    Emma, have you selected the “Text” tab when editing your Page? It defaults to “Visual”.

    Zelen, the code should be:

    <?php
        if ( is_front_page() ) {
            if ( function_exists( 'easingsliderlite' ) ) {
                 echo '<div align="center">';
                 easingsliderlite();
                 echo '</div>';
           }
        }
    ?>
    Plugin Author MatthewRuddy

    (@matthewruddy)

    Hey, going to mark this as resolved but feel free to get back in contact if support is still needed ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Center slideshow on page’ is closed to new replies.