• Resolved linebo

    (@linebo)


    Hi.

    I’m using the theme “tracks” on my website. I’m trying to make a static front page – without the title and get white box below.

    I found this css code:

    .page-template-front-page .entry-title {
    display: none;
    }.page-template-front-page .entry-header,
    .page-template-front-page .entry-container {
    display: none;
    }
    .page-template-front-page .entry {
    background: none;
    }

    which should do the work, but I’ve added it on my website (www.lineblond.dk) and it doesn’t seem to work with my static front page.

    Is there any other way to fix it?

    – Line.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Are you trying to hide the “Forside” text on the home page?

    Replace .page-template-front-page with .home.singular-page-2

    .home.singular-page-2 .entry-title {
        display: none;
    }
    
    .home.singular-page-2 .entry-header,
    .home.singular-page-2 .entry-container {
        display: none;
    }
    
    .home.singular-page-2 .entry {
        background: none;
    }
    Thread Starter linebo

    (@linebo)

    Thank you so much!

    Do you by any chance also know, how I change the color on the “bars” on the mobile menu?

    It took time to even realize that there was a mobile menu there 🙂

    .toggle-navigation {
      color: #000000;
    }
    Thread Starter linebo

    (@linebo)

    Thank you soooooooo much! 🙂

    Most welcome!

    Please set this thread as resolved.

    Thread Starter linebo

    (@linebo)

    🙂

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Static front page doesn't seem to work’ is closed to new replies.