- Acme Themes

Best Premium and Free WordPress Themes Forums Mercantile Child-Theme – Page with slider Reply To: Child-Theme – Page with slider

#12278
marcoluca1988
Participant

Thank you for the reply. I’m able to create a new template with right slider. Slider is created with another name because i want to use special widget for different page. My problem, now, is that slider don’t play like yours. I hava activate it with:

<?php

if ( function_exists(‘register_sidebar’) )
register_sidebar( array(
‘name’ => ‘Staff Page Sidebar’,
‘id’ => ‘staff-page-sidebar’,
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h2 class=”widget-title”>’,
‘after_title’ => ‘</h2>’,
));

add_action( ‘widgets_init’, ‘mercantile_widgets_init’ );

Than i define in css:

#staff-page-sidebar { position:relative; margin-left:70%; padding-left:15px; font-size: 9pt; color:#bbb;}
#staff-page-sidebar h3, #staff-page-sidebar h2, {color:#fff; font-size: 12pt;}

but my sidebar don’t go like yours. (Example: It is not configurated in correct size and there isn’t border or image are too large (using your AT post widget). Search widget or calendar go perfectly. Then i see that in tablet mode or cellular mode they don’t go down under articles. How i can fix it?

Thanks