
Od jakiegoś czasu prowadzę stronę postawioną na wordpressie. Mam mały problem z wyśrodkowaniem slidera.
Oto strona : artfancy.pl
Gdzie szukać rozwiązania?
Oprócz tego co niżej wkleiłem, mogę jeszcze podrzucić metaslider.php
Próbowałem coś zmienić w metaslider.php, ale wyskakiwał mi błąd i strona się crashowała, przez co musiałem poprawiać pliki na serwerze i zmieniać kod do poprzedniej wersji.
Na WP w ustawieniach zaawansowanych slidera mam zaznaczone " wysrodkuj " jednak nie daje to jak widać efektów:(
Z góry dzięki!
Szablon strony głównej:
<?php /** * The main template file. * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * Learn more: [url="http://codex.wordpress.org/Template_Hierarchy"]http://codex.wordpress.org/Template_Hierarchy[/url] * * @package vantage * @since vantage 1.0 * @license GPL 2.0 */ get_header(); ?> <div id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php vantage_content_nav( 'nav-below' ); ?> <?php else : ?> <?php get_template_part( 'no-results', 'index' ); ?> <?php endif; ?> </div><!-- #content .site-content --> </div><!-- #primary .content-area --> <?php get_sidebar(); ?> <?php get_footer(); ?>