• Hi all, I am fairly new to wordpress, css etc but understand enough to know that my element.style is inline css and can not be edited from my style.css.

    Can anyone help me, I simply want to remove the words: PRODUCT INFORMATION and the Category: rooms (link) from this page and all woo commerce single product pages.

    http://northeastwebcompany.co.uk/?product=test

    I am trying to put this together for my boss. If anyone could help me an tell me exactly what I need to do to achieve this I would be so appreciative.

    Thanks in advance:

    Ben

Viewing 1 replies (of 1 total)
  • Two things.

    1. Both issues have nothing to do with inline CSS

    2. However you could hide both things via CSS

    Place the following code in your style.css

    .span6.product_meta h4, span.posted_in {
    display:none!important;
    }

    And now they both should be gone.

Viewing 1 replies (of 1 total)

The topic ‘Inline CSS Issues’ is closed to new replies.