• Resolved sarangsss29

    (@sarangsss29)


    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

    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

    (@alxmedia)

    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.