Forum Replies Created

Viewing 15 posts - 436 through 450 (of 1,556 total)
  • Author
    Posts
  • in reply to: Adjust background picture in mobile phone mode #189415
    Psink
    Keymaster

    Yes it may be possible to fix this by adding the CSS code in the Additional CSS

    Could you please share your site URL if the site is live and also some reference screenshots?

    in reply to: Pho error headers #189363
    Psink
    Keymaster

    @BIRLA-ARNAA, can you please explain in more detail what did you change to fix the issue?

    in reply to: How to get rid of search? #189358
    Psink
    Keymaster

    @RANCHOALEGRE, there is an option to disable search in the menu GO to Customizer >> Theme Options >> Menu Options >> Search in Primary Menu

    in reply to: PhotoBrust Child Theme #189357
    Psink
    Keymaster

    Yes, changing the parent theme is not a good approach as the code will disappear whenever the theme gets updated.

    For the solution to your issue don’t change anything in the parent theme just copy the whole ‘inc’ folder
    from the parent theme and paste it to the child theme. Since get_theme_file_path() get the path from the activated theme and there are no files of that path in the child theme so we have to add an inc folder. Besides that, you can customize anything in the child theme

    in reply to: New Changes/Media not appearing in live portal #189356
    Psink
    Keymaster

    Could you please share your site login to prashant.themepalace@gmail.com? We will inspect the issue and let you know

    in reply to: Shop All and Out of Stock – please help #189354
    Psink
    Keymaster

    Please this add one CSS

    .outofstock a.button.wp-element-button.product_type_simple:before {
    content: “Out Of Stock” !important;
    padding: 14px !important;
    margin-left: 18px !important;
    border: 2px solid !important;
    border-color: #f5808c !important;
    }

    • This reply was modified 2 years, 9 months ago by Psink.
    in reply to: Text in header #189353
    Psink
    Keymaster

    @FOSTERKITTYCATS, you can add this CSS

    #page-site-header #breadcrumb-list {
    display: none;
    }

    in reply to: Text in header #189337
    Psink
    Keymaster

    @ALLI, Could you please share your site URL? We will provide you with a CSS to align the text center

    in reply to: Open in New Tab and Item Carousel #189309
    Psink
    Keymaster

    Sure, I will share a code file with you and put CSS and Js codes in their respective place. First, you will need to install “Theme Editor” and “Simple Custom CSS and JS” Plugin, activate both plugins and follow the screen record

    https://www.awesomescreenshot.com/video/16471182?key=2bf2f0fc6c00cfb185f3a46bb6d28646

    let us know if you have any confusion

    in reply to: Unable to add categories #189308
    Psink
    Keymaster

    We will release the update by fixing the issue. For now, you can remove one line of code from the function.php

    Follow the screen record
    https://www.awesomescreenshot.com/video/16469596?key=4230b18a54c6fe6c93dddfe9e34c6c7a

    Hope this will help

    in reply to: Open in New Tab and Item Carousel #189285
    Psink
    Keymaster

    Yes, we can help you with that, can you please share your site login? You can share it to prashant.themepalace@gmail.com

    Psink
    Keymaster

    Hello,

    First of all thank you for choosing Signify Dark theme for your site. Regarding the header alignment could you please explain more details and provide some reference screen shot.

    Regarding the sticky menu add this js and css code

    JS code
    jQuery(document).ready(function( $ ){
    $(window).scroll(function() {
    if ($(this).scrollTop() > 1) {
    $(‘#masthead’).addClass(‘sticky-head’);
    }
    else {
    $(‘#masthead’).removeClass(‘sticky-head’);
    }
    });
    });

    CSS code

    #masthead.sticky-head .site-branding{
    display: none;
    }

    #masthead.sticky-head {
    position: fixed;
    z-index: 1;
    background: #000;
    width: 100%;
    }

    #masthead.sticky-head #site-header-menu{
    border: none;
    }

    You can the the screen record to add this code
    https://www.awesomescreenshot.com/video/16399398?key=9df412e6f41f9058f38fbb2e556613bf

    Psink
    Keymaster

    Hello,

    First of all thank you for choosing Signify Dark theme for your site. Regarding the header alignment could you please explain more details and provide some reference screen shot.

    Regarding the sticky menu add this js and css code

    JS code
    jQuery(document).ready(function( $ ){
    $(window).scroll(function() {
    if ($(this).scrollTop() > 1) {
    $(‘#masthead’).addClass(‘sticky-head’);
    }
    else {
    $(‘#masthead’).removeClass(‘sticky-head’);
    }
    });
    });

    CSS code

    #masthead.sticky-head .site-branding{
    display: none;
    }

    #masthead.sticky-head {
    position: fixed;
    z-index: 1;
    background: #000;
    width: 100%;
    }

    #masthead.sticky-head #site-header-menu{
    border: none;
    }

    You can the the screen record to add this code
    https://www.awesomescreenshot.com/video/16399398?key=9df412e6f41f9058f38fbb2e556613bf

    in reply to: Text in header #189239
    Psink
    Keymaster

    You can add this CSS to eliminate the header overlay text

    – TO ELIMINATE PAGE TITLE ONLY
    #page-site-header .page-header {
    display: none;
    }

    – TO ELIMINATE WHOLE OVERLAY TEXT
    #page-site-header {
    display: none;
    }

    You will get the following color options in the pro version
    https://themepalace.com/instructions/themes/pet-business-pro/#doc-how-to-manage-colors-6

    in reply to: Shop All and Out of Stock – please help #189238
    Psink
    Keymaster

    @RMINEH, Regarding query no.1 we can fix the issue by adding CSS code in additional CSS

    Here is the CSS code

    .outofstock .wp-element-button {
    visibility: hidden;
    padding: 0px 0px !important;
    }

    .outofstock a.button:hover{
    color: #000 !important;
    }

    .outofstock .wp-element-button:before {
    visibility: visible;
    content: ‘Out Of Stock;
    padding-left: 20px;
    }

    Add this to Customizer >> Additional CSS

    Regarding query no.2 could you please explain in more detail?

Viewing 15 posts - 436 through 450 (of 1,556 total)