Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #28496

    Hello Guys,

    could you please give me a hint how to hide the title container on the front page?

    i tried the

    #top.home #main.title_container {

    display: none;

    }

    anyway does not seem to work.

    #137730

    Hi,

    If you want to change the style of a specific page, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.

    .page-id-2251 .title_container {
    display: none;
    }

    Regards,

    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘hide .title_container on front page’ is closed to new replies.