• Hi, my theme ZeeNews is missing something but I can’t see where to add it.

    In the sidebar on the right, each item in each section has a black circle before it. I added a section/widget called Contact. The item is titled Contact Me. But the circle is missing.

    I went into sidebar.php but I don’t see the reference to it. For example

    <?php wp_list_categories('title_li=<h2 class="widgettitle">Categories</h2>'); ?>
    
    		<?php wp_list_pages('title_li=<h2 class="widgettitle">Pages</h2>'); ?>

    I assume that in the CSS there is a Class that adds it. But in my widget, I just have the link to /contact-me.html.

    How would I code in the reference to bring up the circle?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi.
    Could you provide me whole code from sidebar.php?

    Thread Starter SickSquirrel

    (@sicksquirrel)

    <div id="sidebar">
    	<?php themezee_widgets_before(); // hook before sidebar widgets ?>
    
    	<?php // Check if there are Widgets in Sidebar
    	if( is_active_sidebar('sidebar-top') or is_active_sidebar('sidebar-bottom')
    		or is_active_sidebar('sidebar-left') or is_active_sidebar('sidebar-right') ) :
    	?>
    
    	<ul class="sidebar-top">
    		<?php if(is_active_sidebar('sidebar-top')) : dynamic_sidebar('sidebar-top'); endif; ?>
    	</ul>
    
    	<div class="sidebar-two">
    		<ul class="sidebar-left">
    			<?php if(is_active_sidebar('sidebar-left')) : dynamic_sidebar('sidebar-left'); endif; ?>
    		</ul>
    		<ul class="sidebar-right">
    			<?php if(is_active_sidebar('sidebar-right')) : dynamic_sidebar('sidebar-right'); endif; ?>
    		</ul>
    	</div>
    
    	<ul class="sidebar-bottom">
    		<?php if(is_active_sidebar('sidebar-bottom')) : dynamic_sidebar('sidebar-bottom'); endif; ?>
    	</ul>
    
    	<?php else: ?>
    	<ul>
    		<li><h2 class="widgettitle"><?php _e('Sidebar', 'themezee_lang'); ?></h2>
    			<div><?php _e('Go to WP-Admin > Appearance > Widgets to place your favorite Widgets here.', 'themezee_lang'); ?></div>
    		</li>
    
    		<?php wp_list_categories('title_li=<h2 class="widgettitle">Categories</h2>'); ?>
    
    		<?php wp_list_pages('title_li=<h2 class="widgettitle">Pages</h2>'); ?>
    
    		<li><h2 class="widgettitle"><?php _e('Archives', 'themezee_lang'); ?></h2>
    			<ul>
    			<?php wp_get_archives(); ?>
    			</ul>
    		</li>
    
    	</ul>
    
    	<?php endif; ?>
    
    	<?php themezee_widgets_after(); // hook after sidebar widgets ?>
    </div>

    On my site, it appears as

    Site Admin

    (solid black circle) Site Admin
    (solid black circle) Log out
    (solid black circle) Entries RSS

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Character missing’ is closed to new replies.