How can i order the icons in horizontal? And how can i get delete that point before the icon?
How can i order the icons in horizontal? And how can i get delete that point before the icon?
Make sure your theme is adding classes to your widgets correctly.
In the register_sidebar() function your before_widget value should have "%2$s" inside the classes. Currently your theme doesn't support Dynamic widget classes.
example:
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
register_sidebar(array(
'name' => __( 'Sidebar','wpex'),
'id' => 'sidebar',
'description' => __( 'Widgets in this area are used on the main sidebar.','wpex' ),
'before_widget' => '<div class="%2$s">',
'after_widget' => '</div>',
'before_title' => '<h4 class="heading"><span>',
'after_title' => '</span></h4>',
));
have a look at the codex:
http://codex.wordpress.org/Function_Reference/register_sidebar
first, thanks for you response.
Im a little geek on this stuff so can you tell me in witch file is this code?
depends on the theme. You are using a premium theme, try contacting the theme author.
Hello.
I am having the same problem, while using the GoPress template. I was unable to find the register_sidebar in my editor. Any ideas on how I can fix this? Thank you!
I found register_sidebar in the function.php. I made the change, but still no luck. Fingers crossed for a fix. Thx again!
You must log in to post.