Viewing 3 replies - 1 through 3 (of 3 total)
  • Go to your theme settings, and go to page.php. After that look for the code that looks like this:

    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    				<h2 class="entry-title"><?php the_title(); ?></h2>
    				<div class="linebreak clear"></div>
    				<div class="entry-content">

    Once you found that code, replace it with this:

    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    				<h2 class="entry-title"><?php the_title(); ?></h2>
    				<div class="linebreak"></div>
    				<div class="entry-content">

    What I did was remove the “clear” from the linebreak, which means it would get its original styling and not the clear one.

    Thread Starter Daevu

    (@daevu)

    Great! Thank you very much, Ziv. You are my hero!

    No problem glad I helped!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Theme: Codium Extend] Grey underline between page title and content’ is closed to new replies.