Home Forums WoodMart support forum Related products and brands

Related products and brands

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #151594

    Curious
    Participant

    Hello,

    How do I get to edit these two in the circle? I can’t find it.

    Attachments:
    You must be logged in to view attached files.
    #151634

    Hello,

    Most likely this is the Pre-footer. You can find the shortcode of the HTML block which is used in the Theme Settings > Footer > pre-footer area. If you remove the shortcode, the block would disappear globally, if you want to edit, find the block by ID in Dashboard > HTML blocks > edit. The current block shows the brand’s carousel, this is a brand attribute. You can find more details here: https://xtemos.com/docs/woodmart/html-blocks-2/#pre-footer and https://xtemos.com/docs/woodmart/faq-guides/how-to-setup-brands/

    If you want to hide the pre-footer only on the product page, add this custom CSS to the Theme Settings > Custom CSS > Global:

    .single .woodmart-prefooter{
    display:none;
    }

    Best Regards

    #151659

    Curious
    Participant

    Done with the brands.

    I would like to edit the related products headline, to the middle, but I still can’t find it.
    I don’t want to hide it. 🙂

    #151669

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .related-and-upsells .related-products h3.slider-title{
    display:block;
    max-width:200px;
    margin:20px auto;
    }

    Best Regards

    #151673

    Curious
    Participant

    Oh, cool, thanks. I would like the line to be like on the rows on the front page.

    #151732

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .slider-title:before {
        left: 35%;
    }

    Best Regards

    #151794

    Curious
    Participant

    Hello,

    It’s not working. I want it to look like the attached. Can you do it?

    #151795

    Curious
    Participant

    Like the headline and line under the headline, inside the green box.

    Attachments:
    You must be logged in to view attached files.
    #151812

    Hello,

    Replace the whole code I provided before with this one:

    body .related-and-upsells .related-products h3.slider-title{
    display:block;
    max-width:210px;
    margin:20px auto;
    border-bottom:2px solid red;
    	text-align:center;
    }
    body .slider-title:before {
        display:none;
    }

    Best Regards

    #151815

    Curious
    Participant

    Hello again,

    I don’t know how to add the color #1b7252 to it. And the grey line is still missing.

    Kind regards

    #151860

    Hello,

    The HTML structure does not allow making a grey line and red line at the same time as you show on the screen. Where do you want to add this color #1b7252? Is this text or line colo?

    Best Regards

    #151872

    Curious
    Participant

    Hello,

    Okay – It is the color on the line under the text. The one which is red right now.

    Kind regards

    #151915

    Replace the whole code I provided before with this one:

    body .related-and-upsells .related-products h3.slider-title{
    display:block;
    max-width:210px;
    margin:20px auto;
    border-bottom:2px solid #1b7252;
    	text-align:center;
    }
    body .slider-title:before {
        display:none;
    }

    Best Regards

    #152051

    Curious
    Participant

    Thank you 🙂

    #152073

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 15 posts - 1 through 15 (of 15 total)

The topic ‘Related products and brands’ is closed to new replies.