Forum Replies Created

Viewing 20 posts - 1,221 through 1,240 (of 12,034 total)
  • Author
    Posts
  • in reply to: How to change the URL of the content sections #290010
    Skandha
    Participant

    @webgo82: Hello there,
    Go to => Appearance => Customize => Theme Options => Fullpage Options => Anchor # Ids => Change the Id’s and Publish.

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

    in reply to: Setting up Team section / content type for team #290008
    Skandha
    Participant

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

    Kind Regards,
    Skandha

    in reply to: Portfolio section #289930
    Skandha
    Participant

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

    #portfolio-content-section .entry-container {
        opacity: 1;
    }

    The image will be made a clickable link in the upcoming update but it is not possible to have the title below the image.

    I hope this helps you out!
    Kind Regards,
    Skandha

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

    @joemcomber: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/kids-camp/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a great weekend! 🙂

    Kind Regards,
    Skandha

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

    @joemcomber: Hello there,
    Please remove the CSS Code that you using in the Additional CSS Code section and try adding the following CSS Code instead.

    .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;
        background-color: #fff;
    }
    .custom-header-content .entry-title {
        color: #212121;
    }
    body:not(.home) .header-media .wrapper::after {
        background-color: unset;
    }
    .custom-header-content .entry-title::after {
        border-bottom: 1px solid;
            border-bottom-color: currentcolor;
        content: '';
        display: block;
        margin: 28px auto 0;
        width: 50px;
        border-color: #c0b283;
    }

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

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

    @joemcomber: Hello there,
    Please use the following CSS Code instead.

    .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;
    }
    .home .custom-header .custom-header-content {
        padding-top: 300px !important;
    }
    
    @media screen and (max-width: 600px) {
        .home .custom-header-content .entry-title {
            font-size: 30px;
        }
        .home .custom-header-content .more-link {
            font-size: 20px;
            margin-top: 0;
            width: 120px !important;
            margin: 0 auto
        }
    }
    .home .custom-header-content .entry-container {
        width: 570px;
    }

    This should solve the image being cut off different screen size issue.
    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Remove display of post date and author? #289901
    Skandha
    Participant

    @webicity: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble,= I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/my-music-band/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a great weekend! 🙂

    Kind Regards,
    Skandha

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

    @palosverdesmagazine: Hello there,
    Yes that CSS shold do the trick.

    Let me know if you come across anymore issues.
    Kind Regards,
    Skandha

    in reply to: Remove display of post date and author? #289868
    Skandha
    Participant

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

    #infinite-post-wrap .entry-footer {
        display: none;
    }

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

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

    @lblumenfeld: Hello there,
    I am afraid it is not possible to have the Page Title below the Header Image when the Header Image is enabled. You will need to disable the header image for that.

    For instruction please check out our FAQ page here.

    Kind Regeards,
    Skandha

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

    @joemcomber: Hello there,
    Please use the following CSS Code instead.

    .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;
    }
    .home .custom-header .custom-header-content {
        padding-top: 300px !important;
    }
    
    @media screen and (max-width: 600px) {
        .home .custom-header-content .entry-title {
            font-size: 30px;
        }
        .home .custom-header-content .more-link {
            font-size: 20px;
            margin-top: 0;
            width: 120px !important;
            margin: 0 auto
        }
        .home .custom-header-content .entry-container {
            width: 570px;
        }
    }

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

    in reply to: site header menu position #289864
    Skandha
    Participant

    @rodeboy: Hello Chris,
    Please replace the CSS Code above with the following.

    @media screen and (orientation:landscape) and (max-width: 1024px) {
        .custom-header {
             background-position: center 55px !important;
        }
    }

    To center the slider title on your other site please use the CSS Code below

    .slider-content-wrapper.entry-content-wrapper {
        margin-right: 45px !important;
    }

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

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

    @sim: Hello there,
    Can you please try deactivating all your plugins and see if the slider works?

    Let me know if the issue persists!
    Kind Regards,
    Skandha

    in reply to: Uppercase slogan #289861
    Skandha
    Participant

    @bastienchill: Glad the issue is resolved. Have a great weekend! 🙂

    Kind Regards,
    Skandha

    in reply to: jQuery URL/undefined 404 error #289858
    Skandha
    Participant

    @knutella: Hello there,
    This doesn’t look like a theme issue rather it looks like a server issue. Please try contacting your server regarding this issue.

    Kind Regards,
    Skandha

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

    @nakagawa: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/clean-enterprise/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely
    appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a great weekend! 🙂

    Kind Regards,
    Skandha

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

    @knadles: Hello there,
    I have sent you an email. Please check your inbox as well as the spam folder.

    Kind Regards,
    Skandha

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

    @joemcomber: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/kids-camp/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely
    appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

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

    @sim: Hello there,
    I checked your site and you have only have one image selected on the Featured Slider. Can you add more images to the slider so that I can look in the issue?

    Kind Regards,
    Skandha

    in reply to: Catch Shop Header and Logo #289826
    Skandha
    Participant

    @mattis: Hello there,
    I was not able to access your site. Can you please check if the URL you provided is correct?

    Kind Regards,
    Skandha

Viewing 20 posts - 1,221 through 1,240 (of 12,034 total)