• Resolved lizzyross

    (@lizzyross)


    I am using the static front page option in the harmonic theme at https://lizzy.net/. I created a child theme and have rearranged the front page sections so that the page section comes first (at the top). The front page has no title, it only contains a music player embedded from bandcamp.com. However, there is still a line above the page content. I believe it is where the title would be underlined if there were a title. How can I remove this line?

    I have tried adding the following to the stylesheet, each time with no success:

    .page-header {
    display:none;
    }

    .post-title > a {
    text-decoration: none;
    }

    section .widget-title:after,
    .panel.widget .widget-title:after {
    border: 0;
    }

    What can I do? Many thanks for your help! I am very grateful for the help I’ve already received in this forum from others’ posts. Rock on ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator Kathryn Presner

    (@zoonini)

    This should remove that line on the front page:

    .home .entry-header {
      display: none;
    }
    Moderator Kathryn Presner

    (@zoonini)

    Or if you want to keep the spacing exactly the same, you could use this instead:

    .home .entry-header {
      visibility: hidden;
    }

    Glad you’ve found the forum useful!

    Thread Starter lizzyross

    (@lizzyross)

    Thank you Kathryn!! That worked and I am so grateful! I thought of an alternative option, and I’m not sure if it belongs in the same post or a new thread, but I’ll give it a shot here-

    I would love to be able to use the page section for other info. If I could use harmonic’s default slide 1 title section for the top of the front page and include an embedded player on that, I would do so. Do you perceive any clear way to do this?

    Many thanks!!
    Lizzy

    Thread Starter lizzyross

    (@lizzyross)

    Hi Kathryn and all,
    Ok, so the css tweak removed the header and title underline from the static front page, but it also removed all the headlines on the front page “news” section. Is there any way to keep the news section titles and not have the title at the top of the static front page?
    Many thanks!!

    Moderator Kathryn Presner

    (@zoonini)

    Ok, so the css tweak removed the header and title underline from the static front page, but it also removed all the headlines on the front page “news” section. Is there any way to keep the news section titles and not have the title at the top of the static front page?

    Oops, that’s not good. ??

    Try this instead to target the first panel only:

    .home #slide-3 .entry-header {
      display: none;
    }

    Could you please start a new thread for your other question? Thanks!

    Thread Starter lizzyross

    (@lizzyross)

    Thank you Kathryn!! That worked! I will put that topic in a new thread now. Many thanks for your good help.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove title underline from front page’ is closed to new replies.