Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1070898

    Hello,

    I would like to have a image banner on my product categy pages but I would like the Category description text not overlayed on the image but on the bottom of the page behind my listed products.

    So far I achieved to show the description text at the bottom of my page via the solution posted here: https://kriesi.at/support/topic/moving-category-description-under-products/. But now I would like to remove the category description text from the banner image at the top.

    Example: see private content:

    Could you please help me to remove the description text from the image?

    Thanks!

    #1071093

    Hi stofson

    Is it possible to share the example publicly?

    Cheers
    Michael

    #1071189

    Yes sure, here it is:

    Example: See category description text “viele viadsfljadfölkadsjöflkadsöf asdklfjasf adfadf” on page https://www.tretroller-laden.de/product-category/tretroller-erwachsene/

    #1071192

    Try this code and insert it into Quick CSS:

    #av_product_description h1 {
    display: none;
    }

    Does that work?

    #1071276

    Hi Micheal,

    thanks for your prompt reply. Yes it works. Only thing is that it shows again if I use h1,h2 etc. in the text editor of the category description. Then it shows again. Is there a way to avoid this?

    Thanks,

    stofson

    #1071526

    Hi

    Ok great. Sure, you can assign a separate CSS class to these titles where you don’t want that to happen such as:

    HTML

    <h1 class="h1show">This is the h1 title you want to show</h1>
    <h2 class="h2show">This is the h2 title you want to show</h2>

    CSS:

    h1show, h2show {
    display: block;
    }

    Cheers
    Michael

    #1071660

    Thanks Michael for your great support. It works :-)

    #1071687

    Cool – good job!

    #1071880

    Hi,

    Awesome. Glad @michaelH helped. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘remove the category description text from the image banner at category page’ is closed to new replies.