Page title margins/padding

I’m sorry to bother you with this. A week ago you helped me add come to my Functions file that would insert the Page title in each page. That works great now. I just can’t find the right CSS code to reduce the padding and margins. I’ve tied this version, but it seems to affect only affect portions of the div.

Global CSS:

x-section { padding: 0px 0px 0px 0px ; }

e42-1 x-section { padding: 0px 0px 0px 0px ; }

http://p3t.502.mwp.accessdomain.com/devices-cards/

Hey Richard,

Please update this code:

to

function add_title() { 
    if( !is_home() || !is_front_page() ) :
?>
        <div class="x-section" style="padding: 0; margin-bottom: 0;">
			<div class="x-container max width">
				<header class="entry-header mbm">
		        	<h1 class="entry-title"><?php the_title(); ?></h1>
		        </header>
			</div>
		</div>
 <?php
    endif;
}
add_action( 'x_before_the_content_begin', 'add_title', 10 );

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.