Cris
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve] How to make my header full width ?Ye this worked out fine, thanks man :). Btw maybe you know how to remove that small white space above my header ?
Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve] How to make my header full width ?I saw some posts , but still i didn’t manage to find anything that works for me..
Forum: Fixing WordPress
In reply to: How to remove space between nav menu and header ?Thanks ??
Forum: Fixing WordPress
In reply to: How to remove space between nav menu and header ?No i just want the nav menu and the header to stretch to full height not to remove the white spaces .. a fast picture maid on paint to see what i mean https://i.imgur.com/ysq5DlD.png the red arrows are the places where i want the nav menu and the header to stretch to
Forum: Fixing WordPress
In reply to: How to remove space between nav menu and header ?doesn’t fix the white space from the sides . Still thank you ??
Forum: Fixing WordPress
In reply to: How to remove white space above post title in twenty twelve?.page .entry-content p{margin-bottom: 2px;} .post .entry-content p{margin-bottom: 2px;}
i tried this but it doesn’t seem to do anything about that space..
Thank you ??
Forum: Fixing WordPress
In reply to: How to remove this entry was posted in twenty twelve theme ?I don’t see it now anymore. Thank you was a pain in the ass.
Forum: Fixing WordPress
In reply to: How to remove this entry was posted in twenty twelve theme ?Yes i have child theme. https://www.motivationgrid.com
Forum: Fixing WordPress
In reply to: How to remove this entry was posted in twenty twelve theme ?I want to remove it from everywhere.. Not just posts , pages as well
Forum: Fixing WordPress
In reply to: How to make a gallery in twenty twelve ?Thanks ! .. I figured out and i think it works as i want now !
Forum: Fixing WordPress
In reply to: How to make my front page to display latest posts from a category ?Thanks it’s working now ??
Forum: Fixing WordPress
In reply to: How to make my front page to display latest posts from a category ?get_header(); ?> <div id="primary" class="site-content"> <div id="content" role="main"> <?php query_posts ($query_string . '&cat=Articles'); ?> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php twentytwelve_content_nav( 'nav-below' ); ?> <?php else : ?> <article id="post-0" class="post no-results not-found"> <?php if ( current_user_can( 'edit_posts' ) ) : // Show a different message to a logged-in user who can add posts. ?> <header class="entry-header"> <h1 class="entry-title"><?php _e( 'No posts to display', 'twentytwelve' ); ?></h1> </header> <div class="entry-content"> <p><?php printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentytwelve' ), admin_url( 'post-new.php' ) ); ?></p> </div><!-- .entry-content --> <?php else : // Show the default message to everyone else. ?> <header class="entry-header"> <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1> </header> <div class="entry-content"> <p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p> <?php get_search_form(); ?> </div><!-- .entry-content --> <?php endif; // end current_user_can() check ?> </article><!-- #post-0 --> <?php endif; // end have_posts() check ?> </div><!-- #content --> </div><!-- #primary --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Is this how it should look ? Because it’s not working ??
Forum: Fixing WordPress
In reply to: How to make my front page to display latest posts from a category ?so my category is called Articles.. That means Articles = category ID ?