Title: Help &#8211; Using Gridiculous Theme
Last modified: August 20, 2016

---

# Help – Using Gridiculous Theme

 *  [Fashion](https://wordpress.org/support/users/infinityfiltr/)
 * (@infinityfiltr)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/)
 * I am using the Gridiculous Theme;
 * On my page, unfortunately I have been trying to center the page tabs on my navigation
   menu but can’t successfully do it. What do I need to write/where do I need to
   place the coding… because I see so many tutorials online about what to type in
   my code, however, none of it is for Gridiculous – so I’m lost at what I need 
   to do. Any help?

Viewing 15 replies - 1 through 15 (of 48 total)

1 [2](https://wordpress.org/support/topic/help-using-gridiculous-theme/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/help-using-gridiculous-theme/page/3/?output_format=md)
[4](https://wordpress.org/support/topic/help-using-gridiculous-theme/page/4/?output_format=md)
[→](https://wordpress.org/support/topic/help-using-gridiculous-theme/page/2/?output_format=md)

 *  [bandicootmarketing](https://wordpress.org/support/users/tinkerpriest/)
 * (@tinkerpriest)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960802)
 * All you need to do is modify the CSS in style.css. Look for this selector:
 *     ```
       #site-navigation ul
       ```
   
 * Then you can add a new line of CSS setting the text-align to center, like so:
 *     ```
       #site-navigation ul {
          padding: 0;
          margin: 0;
          text-align: center;
          }
       ```
   
 *  Thread Starter [Fashion](https://wordpress.org/support/users/infinityfiltr/)
 * (@infinityfiltr)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960841)
 * PERFECT! Thank you! I have two more questions if you could please help me out:
 * 1.) How am I able to align the site’s title to the center; when viewed on Mobile?(
   I don’t want it centered when viewed on laptops and desktops)
 * 2.) How am I able to completely remove “by: Administrator – August 12, 2012 –
   0 Comments” ; I don’t have people comment on any of my posts, so how am I just
   able to completely remove all that stuff in the top left corner of posts?
 *  [bandicootmarketing](https://wordpress.org/support/users/tinkerpriest/)
 * (@tinkerpriest)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960864)
 * 1. You would have to add some CSS to the media queries near the bottom of style.
   css. Make sure to add it to the `max-width: 600px` query.
 *     ```
       #header hgroup { width: 100% }
       #site-title { text-align: center }
       ```
   
 * 2. You can remove the following code from content.php:
 *     ```
       <?php if ( ! is_page() ) { ?>
       <h2 class="post-meta">
       	<?php
       	_e('by', 'gridiculous'); echo ' '; the_author_posts_link();
       	echo '&nbsp;&bull;&nbsp;';
       	echo '<a class="date-anchor" href="' . get_permalink() . '">';
       	the_time( get_option( 'date_format' ) );
       	echo '</a>';
   
       	if ( comments_open() ) {
       		echo '&nbsp;&bull;&nbsp;';
       		comments_popup_link( __( '0 Comments', 'gridiculous' ), __( '1 Comment', 'gridiculous' ), __( '% Comments', 'gridiculous' ) );
       	}
       	?>
       </h2>
       <?php } ?>
       ```
   
 * Since you are making some core changes I would suggest creating a child theme.
   That way when you update the theme your changes will not be overwritten. Here
   is a [link to a tutorial on creating a child theme](http://bavotasan.com/2011/creating-a-child-theme-in-wordpress/)
   that I wrote.
 *  [AustinWilde](https://wordpress.org/support/users/austinwilde/)
 * (@austinwilde)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960891)
 * Is there any way to remove the shadow from the font on the Gridiculous theme?
 *  [bandicootmarketing](https://wordpress.org/support/users/tinkerpriest/)
 * (@tinkerpriest)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960899)
 * You can delete the text-shadow line from this CSS in style.css:
 *     ```
       body {
       	color: #555;
       	text-shadow: 1px 1px 0 #eee;
       	font-family: Arial, sans-serif;
       	letter-spacing: 0.05em;
       	}
       ```
   
 *  [sandyrunbaptist](https://wordpress.org/support/users/sandyrunbaptist/)
 * (@sandyrunbaptist)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960901)
 * How do we change the size of the header image? The image is WAY too large on 
   our site.
 *  [bandicootmarketing](https://wordpress.org/support/users/tinkerpriest/)
 * (@tinkerpriest)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960903)
 * Currently, you can’t. But this is something that is going to be changed in the
   next update.
 *  [rob2121](https://wordpress.org/support/users/rob2121/)
 * (@rob2121)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960908)
 * Dear c.bavota
 * How can I change the title to my own logo?
    Thank you!
 *  [bandicootmarketing](https://wordpress.org/support/users/tinkerpriest/)
 * (@tinkerpriest)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960913)
 * You can remove the title and description on the Customize screen. Then you can
   use the header image for your logo.
 *  [tanyaballance](https://wordpress.org/support/users/tanyaballance/)
 * (@tanyaballance)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960917)
 * My png header with a transparent background is showing up as a white block instead
   of showing the background colors. How do I change this? its on the gridiculous
   theme
 * tanyaadamsillustrations.com
 *  [emaraujo](https://wordpress.org/support/users/emaraujo/)
 * (@emaraujo)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960920)
 * Hi,
 * I need help with the following: how can I change the font size for the text and
   also, is it possible to remove the “page titles”? For example: if I click “Home”,
   can the actual page not have the title “Home” on it?
 * Thank you.
 *  [bandicootmarketing](https://wordpress.org/support/users/tinkerpriest/)
 * (@tinkerpriest)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960921)
 * [@tanyaballance](https://wordpress.org/support/users/tanyaballance/) Open up 
   style.css and make sure that this block of CSS on line 277 looks like this:
 *     ```
       #header-img {
       	padding: 0;
       	border: 0;
       	clear: both;
       	background: none;
       	}
       ```
   
 *  [bandicootmarketing](https://wordpress.org/support/users/tinkerpriest/)
 * (@tinkerpriest)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960922)
 * [@emaraujo](https://wordpress.org/support/users/emaraujo/) All of the styles 
   can be changed by editing the CSS in style.css. Look for line 609 and add a font-
   size:
 *     ```
       .post-content {
       	position: relative;
       	width: 100%;
       	font-family: Arial, sans-serif;
       	}
       ```
   
 * To remove the Page title open up content.php and change line 23 from this:
 *     ```
       <?php the_title(); ?>
       ```
   
 * To this:
 *     ```
       <?php if ( ! is_page() ) the_title(); ?>
       ```
   
 *  [emaraujo](https://wordpress.org/support/users/emaraujo/)
 * (@emaraujo)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960923)
 * Thank you so much! You rule!
 *  [emaraujo](https://wordpress.org/support/users/emaraujo/)
 * (@emaraujo)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/#post-2960925)
 * Another question (sorry, I am illiterate at this). How can we remove the white
   borders from pictures or at least make them smaller, please? Both in the galleries
   and on pages. I have been trying but nothing is working.

Viewing 15 replies - 1 through 15 (of 48 total)

1 [2](https://wordpress.org/support/topic/help-using-gridiculous-theme/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/help-using-gridiculous-theme/page/3/?output_format=md)
[4](https://wordpress.org/support/topic/help-using-gridiculous-theme/page/4/?output_format=md)
[→](https://wordpress.org/support/topic/help-using-gridiculous-theme/page/2/?output_format=md)

The topic ‘Help – Using Gridiculous Theme’ is closed to new replies.

## Tags

 * [navigation-menu](https://wordpress.org/support/topic-tag/navigation-menu/)
 * [Page tabs](https://wordpress.org/support/topic-tag/page-tabs/)

 * 48 replies
 * 24 participants
 * Last reply from: [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * Last activity: [13 years ago](https://wordpress.org/support/topic/help-using-gridiculous-theme/page/4/#post-2961005)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
