Stevedawg
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Social Icons] Icons have dot next to themThanks for your help. The thing that actually worked was
.socialMedia { list-style:none; overflow:hidden; }
Forum: Plugins
In reply to: [Simple Social Icons] Icons have dot next to themTried this
.widget ul {
list-style-type:none;
}
.widget .simple-social-icons ul {
list-style-type:none;
}.socialMedia .widget .simple-social-icons ul {
list-style-type:none;
}Forum: Plugins
In reply to: [Simple Social Icons] Icons have dot next to themHere’s the css I’ve add and still have the dot?
.socialMedia ul li { list-style-type:none; } .socialMedia .widget ul li { list-style-type:none; } .widget ul li { list-style-type:none; } .simple-social-icons ul { list-style-type:none; } .simple-social-icons ul.aligncenter { list-style-type:none; } .simple-social-icons ul.aligncenter li { list-style-type:none; } li.social-facebook { list-style-type:none; } ul.aligncenter { list-style-type:none; }
Forum: Plugins
In reply to: [Simple Social Icons] Icons have dot next to themI see there is this css:
.simple-social-icons ul li {list-style-type:none;}
But does it need to be:
.simple-social-icons ul li a {list-style-type:none;}
Forum: Plugins
In reply to: Background Image slider for Container DivAny suggestions out there?
Forum: Themes and Templates
In reply to: Any Idea why my Blog Section doesn't work?I think this is it:
<?php get_header(); ?>
<div id=”mainContent”>
<div id=”primary”>
<div id=”content” role=”main”><?php if ( have_posts() ) : ?>
<?php else : ?>
<article id=”post-0″ class=”post no-results not-found”>
<header class=”entry-header”>
<h1 class=”entry-title”><?php _e( ‘Nothing Found’, ‘twentyeleven’ ); ?></h1>
</header><!– .entry-header –><div class=”entry-content”>
<p><?php _e( ‘Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.’, ‘twentyeleven’ ); ?></p>
<?php get_search_form(); ?>
</div><!– .entry-content –>
</article><!– #post-0 –><?php endif; ?>
</div><!– #content –>
</div><!– #primary –></div><!–end#mainContent–>
<?php get_footer(); ?>