• Resolved sconto

    (@sconto)


    Hi,

    Iam trying to remove the “Menu title” in a page and removed the following code in “template-page.php”
    <?php the_title( ‘<h2 class=”title”>’, ‘</h2>’ ); ?>

    It worked but the line still appears. Can you please help me in advising how to remove the title and line under the title. Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • I would put that code back and just add the Hide Titles Plugin from wordpress for free. It will add an option on each page created on the right side to hide the title for that individual page or not.

    Theme Author acosmin

    (@acosmin)

    Open style.css, find:

    .single-template-1 .single-content {
    position: relative;
    padding-top: 35px;
    border-top-width: 5px;
    border-top-style: solid;
    line-height: 145%;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    }

    Add this bellow:

    .page .single-template-1 .single-content {
    border-top-width: 0px;
    }

    Thread Starter sconto

    (@sconto)

    @acosmin, Thank you so much for the prompt response. Solved my problem.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove "Menu title" and "Underline" in page’ is closed to new replies.