• Hello,

    I’m using the wordpress clean home theme and I’m trying to remove a text wrapper.

    The title text wraps around the menu, and I’m trying to remove that.

    I tried deleting the wrapper from the CSS, but that didn’t work.

    I also tried removing the “<div id=”wrapper”>” tag from header.php, but that didn’t work either.

    I also tried moving the <div id=”wrapper”> to below the title code, but that didn’t work either.

    I’m using an image for the header title.

    What I really want to do it be able to center the header title image and menu.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter aca529

    (@aca529)

    Here’s the code:

    <div id="wrapper">
    
    	<div id="header">
    
    		<div id="logo">
    		<a href="https://www.sitename.com">
    <img src="https://www.sitename.com/image.jpg" alt="Site Name" />
    </a>
    
    		</div>
    		<div id="nav">
    		<?php if ( !function_exists('dynamic_sidebar')
            || !dynamic_sidebar('Top Navigation') ) : ?>
    			<ul>
    				<?php wp_list_pages('title_li='); ?>
    			</ul>
    		<?php endif; ?>
    		</div>
    </div>

    If you are still having a problem can you provide a link to your site?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WordPress clean home wrapper’ is closed to new replies.