Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Noob help required!!

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #282917

    Hi guys,

    I may be in deep water here but I’m only just now starting to dabble in CSS so excuse the noob question.

    I am looking to hide the title ‘Quantity based pricing table’ on the following page – https://broomhillmastering.com/product/attendeddigitalmastering/

    Its produced by a third party plugin with no option to remove. I managed to remove the actual table but not the title.

    Thanks in advance,

    Ben

    #282938
    Shikkediel
    Participant

    I would suggest this:

    .product_meta > h3 {
     display: none;
    }
    
    #282968

    Thank you so much! Can I ask how you identified that it was .product_meta that was the issue?

    Many thanks again

    #282969
    Shikkediel
    Participant

    No trouble. I just used developer tools to have a look at the DOM tree – that element seemed the most appropriate one to target.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.