Title: Needs a few bug fixes
Last modified: March 1, 2022

---

# Needs a few bug fixes

 *  Resolved [sarangsss29](https://wordpress.org/support/users/sarangsss29/)
 * (@sarangsss29)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/needs-a-few-bug-fixes/)
 * Hi,
    I have been trying the Incolor theme on my site. I noticed a few bugs.
 * I added Excerpt using the code
    `<?php the_excerpt(); ?>` After title.
 * However, it shows the Table of content when the Excerpt is missing for the post.
   Here is a screenshot.
    [https://prnt.sc/owVHmflIBsEb](https://prnt.sc/owVHmflIBsEb)
 * Also, I cannot transform single post title to non-uppercase and change the font
   size as well for the title.
    Used the following codes. But nothing happens.
 *     ```
       .entry-title {
         font-size: 38px;
         text-transform: initial;
       }
       ```
   
 *     ```
       h1 {
         font-size: 38px;
         text-transform: initial;
       }
       ```
   

Viewing 1 replies (of 1 total)

 *  Theme Author [Alexander Agnarson](https://wordpress.org/support/users/alxmedia/)
 * (@alxmedia)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/needs-a-few-bug-fixes/#post-15414199)
 * For the title, try this:
 *     ```
       .entry-header .entry-title { font-size: 38px; text-transform: none; }
       ```
   
 * The excerpt issue… I don’t really see what the issue is. I think that is how 
   the excerpt works? You can try:
 *     ```
       <?php if ( has_excerpt() ) : ?>
       <?php echo get_the_excerpt(); ?>
       <?php endif; ?>
       ```
   

Viewing 1 replies (of 1 total)

 The topic ‘Needs a few bug fixes’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/incolor/1.1.1/screenshot.png)
 * Incolor
 * [Support Threads](https://wordpress.org/support/theme/incolor/)
 * [Active Topics](https://wordpress.org/support/theme/incolor/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/incolor/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/incolor/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Alexander Agnarson](https://wordpress.org/support/users/alxmedia/)
 * Last activity: [4 years, 6 months ago](https://wordpress.org/support/topic/needs-a-few-bug-fixes/#post-15414199)
 * Status: resolved