• Resolved pluplik

    (@pluplik)


    Hi. Im trying to make a video page that the “latest videos” text won’t appear.
    tried to make a category page but no luck . still there.
    thx for the help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author tubegtld

    (@tubegtld)

    Try adding this to Appearance > Customize > Additional CSS, assuming you’re hoping to hide this on the Home page…

    body.home .page-content > h3,
    body.home .page-content > hr {
      display:none;
    }
    • This reply was modified 7 years, 7 months ago by tubegtld.
    Thread Starter pluplik

    (@pluplik)

    not home page. from another page.
    a category page which I can make posts with picture preview . the same as the home page but on another page. (the home page will remain still.) and the “latest video text will be gone… thx

    Theme Author tubegtld

    (@tubegtld)

    not home page. from another page.

    The same approach still applies.

    You’ll need to look at the class attribute of the <body> tag for that page and find something you can “hook” to for purposes of selecting the specific page where you want to hide that heading.

    So for example, here’s how you could hide it on ALL category pages…

    body.archive.category .page-content > h3,
    body.archive.category .page-content > hr {
      display:none;
    }

    And here’s how you could hide it on a specific category with the slug ‘mycategoryslug’…

    body.archive.category-mycategoryslug .page-content > h3,
    body.archive.category-mycategoryslug .page-content > hr {
      display:none;
    }
    Thread Starter pluplik

    (@pluplik)

    works great! thank you !

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘remove latest video text’ is closed to new replies.