Forum Replies Created

Viewing 20 posts - 1,241 through 1,260 (of 12,034 total)
  • Author
    Posts
  • in reply to: Remove display of post date and author? #289823
    Skandha
    Participant

    @webicity: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .single-post .entry-header .entry-meta {
        display: none;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Featured Slider – Multiple Slides not working #289822
    Skandha
    Participant

    @sim: Hello there,
    Can you please post in your site URL so that I can look into the issue?

    Kind Regards,
    Skandha

    in reply to: Text in tables unreadable when viewed from mobile phone #289769
    Skandha
    Participant

    @ohh: Hello there,
    This is should prevent the words from overflowing to the next line on mobile devices. I don’t much can be done other that this as the width on the mobile screen is very small.
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    td {
        word-wrap: normal;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Featured image not the same across browsers #289764
    Skandha
    Participant

    @lblumenfeld: Hello there,
    Do you want the Contact Us text to be below the image?

    Kind Regards,
    Skandha

    in reply to: Uppercase slogan #289762
    Skandha
    Participant

    @bastienchill: Hello Bastien,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .site-description {
        text-transform: unset;
    }

    Let me know if this solves your issue.
    Kind Regards,
    Skandha

    in reply to: Changing the font style and size for products #289757
    Skandha
    Participant

    @joemcomber: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .woocommerce-Price-amount.amount {
        font-size: 40px;
    }

    You can change the font size according to your choice.
    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: solution not responsive #289749
    Skandha
    Participant

    @hansh: Hello Hans,
    Glad I could help you finish the website. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Header Media – Mobile Responsive #289746
    Skandha
    Participant

    @joemcomber: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (max-width: 600px) {
        .custom-header::before {
            background-image: unset;
        }
        .custom-header-media img {
            display: block;
        }
        .custom-header-content {
            background-color: #000;
        }
        .home .custom-header .custom-header-content.content-center-top {
            padding: 30px;
        }
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Need to turn off giant menu at top #289717
    Skandha
    Participant

    @knadles: Hello there,
    I will need to have a look at your site to debug the issue? Can you post the URL here or shall I send you an email so your can share the URL privately?

    Kind Regards,
    Skandha

    Skandha
    Participant

    @fastfashn: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (max-width: 600px) {
        .home .custom-header .wrapper::before {
            background-image: unset;  
        }
        .home .custom-header-media .wp-custom-header img {
            display: block !important;
            max-height: 100vh;
        }
        .home .custom-header-content {
            display: none;
        }
        .home .custom-header-media {
            height: auto !important;
        }
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Double Read More Button #289707
    Skandha
    Participant

    @palosverdesmagazine: Hello there,
    You seem to be using a plugin for the whole post blocks and the second Read More button seems to be coming from that plugin. Please let me know which button you would like to keep.

    Kind Regards,
    Skandha

    in reply to: solution not responsive #289643
    Skandha
    Participant

    @hansh: Hello Hans,
    Please replace the previous CSS Code I provided you with the following.

    @media screen and (min-width: 1024px) {
        .up-sells ul.products li.product {
            width: 16.66%;
        }
        .columns-3 ul.products li.product:nth-child(3n+1), .related ul.products li.product:nth-child(3n+1), .upsells ul.products li.product:nth-child(3n+1), .cross-sells ul.products li.product:nth-child(3n+1) {
            clear: unset;
        }
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Changing header on all pages #289640
    Skandha
    Participant


    @jaho
    : Hello there,
    Sorry for the late reply.

    You seem to have switched to another theme. Can you please switch back to Catch Revolution so that I can look into the issues.

    Kind Regards,
    Skandha

    in reply to: Featured image not the same across browsers #289637
    Skandha
    Participant

    @lblumenfeld: Hello there,
    Sorry for the delay as we seem to be working in different timezones.
    Can you please try using the CSS Code below instead of the above one and check if the image is now responsive on mobile devices or not?

    .custom-header .wrapper:before {
    	display: none;
    }
    .custom-header-media img, .custom-header-media video, .custom-header-media iframe {
        display: block;
        height: auto;
        position: unset;
        object-fit: unset;
    }
    .custom-header-content {
        padding: 254px 50px;
        position: absolute;
        top: 50%;
        padding: 50px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    body:not(.home) .header-media .wrapper::after {
    	display: none;
    }

    Let me know if this solves your issues!
    Kind Regards,
    Skandha

    in reply to: Testimonials (more than 3 items) #289630
    Skandha
    Participant

    @nubisstudios: Hello Sander,
    You will need to Publish the customizer and then refresh the customizer to get the new testimonial custom blocks.

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: I want the display to be the same as the demo site #289596
    Skandha
    Participant

    @nakagawa: Hello there,
    Can you please clarify which footer content you are referring to? Please post in your site URL as well.

    Kind Regards,
    Skandha

    in reply to: Featured image not the same across browsers #289595
    Skandha
    Participant

    @lblumenfeld: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (max-width: 800px) {
        .custom-header .wrapper::before {
            background-image: unset !important;
        }
        .custom-header-media img {
            display: block !important;
        }
        .custom-header-media img {
            position: unset !important;
            width: auto;
        }
        .custom-header-content {
            padding: 20px 25px !important;
        }
    }

    Let me know if this solves the issue!
    Kind Regards,
    Skandha

    in reply to: number of related products on one line #289590
    Skandha
    Participant

    @hansh: Glad it worked out. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Change color of posts theme #289585
    Skandha
    Participant

    @ohh: Hello there,
    You can always post here in the forum if you come across any issues. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Text in tables unreadable when viewed from mobile phone #289579
    Skandha
    Participant

    @ohh: Hello there,
    You seem to have an empty <td> cells. Please try removing that.

    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 20 posts - 1,241 through 1,260 (of 12,034 total)