Forum Replies Created

Viewing 20 posts - 10,601 through 10,620 (of 12,034 total)
  • Author
    Posts
  • Skandha
    Participant

    @tcsgs: You have not published your settings in the customizer this is why It is not showing in the live site. You have been saving your customizer settings as a draft. Go to your customizer and click on the icon next to Save Draft then you will see the publish option. This way you will need to publish the changes you made in the customizer.

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

    in reply to: Menu not displaying on Apple Products #151141
    Skandha
    Participant

    @mkolson757: This maybe due to plugin conflicts. Please follow think to check for plugin conflicts. Maybe the plugin is not compatible with the theme. Maybe you could use another page builder plugin if Elementor bringing up issues.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    Skandha
    Participant

    @cuddapah: Please change the value of z-index from 100 to 101 in the previous CSS Code. I think this will solve your issue number 1 and 2.
    The CSS is in effect only for the homepage because you have activated featured slider only on the homepage.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: Site colours #151138
    Skandha
    Participant

    @rhiannacarter: You can change button background color from the customizer. Go to => Appearance => Customize => Colors => Button Background Color and Select you preferred color.
    Please post in your site URL if the button colors are not changing.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    Skandha
    Participant

    @cuddapah: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .section {
    	bottom:92px;
    }
    #site-header-menu {
    	position:relative;
    	z-index:100;
    }

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

    Skandha
    Participant

    @cuddapah: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: ct: tour widget order #151125
    Skandha
    Participant

    @pex81: I’m sorry I am not able to understand what you are trying to say. Could you please elaborate the issue you are having?

    Kind Regards,
    Skandha

    in reply to: Header spacing and adding borders… #151082
    Skandha
    Participant

    @lenatime: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .custom-logo-link {
    	margin-left:50px;
    }
    #masthead {
    	padding-bottom:0px;
    }
    #content .wrapper {
    	padding-top:0px;
    }
    #content {
    	padding-top:0px !important;
    	margin-top:0px !important;
    }
    #site-branding {
    	padding-bottom:0;
    }
    .entry-content p {
    	text-align:center;
    }

    Let me know if this what you want!
    Kind Regards,
    Skandha

    in reply to: Custom Post Types #151075
    Skandha
    Participant

    @wolpertinger: Sorry for the late reply. Firstly you will need to create a child theme for this. If you do not know how to create a child theme then you can use Generate Child Theme Plugin.
    Go to => Child Theme Folder => functions.php and add the following Code.

    add_action( 'init', 'create_post_type' );
    function create_post_type() {
        register_post_type( 'deals',
            array(
                'labels' => array(
                    'name' => __( 'Deals' ),
                    'singular_name' => __( 'Deal' )
                ),
            'public' => true,
            'has_archive' => true,
            )
        );
    }

    You can replace deals with the name of your custom post type.
    You will get the custom post type in the admin area. You can add posts to it and display it as an archive page.

    Let me know if this helps you out.
    Kind Regards,
    Skandha

    in reply to: Header spacing and adding borders… #151074
    Skandha
    Participant

    @lenatime: Please post in your site URL and also can you please explain which spacing you would like to eliminate and also on images you would like to have left and right borders?

    Kind Regards,
    Skandha

    in reply to: Display post dates on my website #151072
    Skandha
    Participant

    @nicolasbassand: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
    To change of the color of date

    .single-post .entry-meta, h1.entry-title {
       color:#fff;
    }

    To separate the categories with ‘>’
    Replace <?php catch_wheels_entry_category(); ?> in the template-parts/content/content.php file in the child theme folder with <?php the_category('>'); ?>

    To change the font of the comment title
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #comments #reply-title {
        font-family: Josefin Sans;
    }

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

    in reply to: Catch Responsive Free – Questions about categories #151067
    Skandha
    Participant

    @ahhyeah: You will need to find a suitable plugin from the WordPress Plugin Repository to add unique header image to Category pages.

    Kind Regards,
    Skandha

    in reply to: menu separator line #151066
    Skandha
    Participant

    @medialinealbus: I don’t think you can add an hyphen to separate the menu items. I feel adding a border to separate the menu items will look better.
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .nav-primary .menu-item {
        border-right:1px solid black;
    }

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

    Skandha
    Participant

    @tcsgs: I will contact you shortly by email.

    Kind Regards,
    Skandha

    in reply to: size of embedded youtube movie #151064
    Skandha
    Participant

    @sumiko: You seem to have removed the video from the page.
    The following CSS Code should have solved the issue.
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .entry-content p {
        width:560px;
    }

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

    in reply to: Display image instead of text in custom-header-media #151058
    Skandha
    Participant

    @mirandaweathers: Please post in your site URL so that I can look into the issue and provide you possible solutions.

    Kind Regards,
    Skandha

    in reply to: Promotion Headline Left and Right sections #151053
    Skandha
    Participant

    @violetdeb: You will need to try decreasing the size of the logo in mobile view. I think that way you will be able to solve the issue.

    Kind Regards,
    Skandha

    in reply to: Header Media Title/Text/Link not appearing #151052
    Skandha
    Participant

    @taulepton: Please try disabling all your plugins and check if this solves the issue.

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

    in reply to: Change weight of paragraph font #151050
    Skandha
    Participant

    @leenajacob: Please let me know which font you want to use for the paragraph text then I can provide you the CSS Code to use that font.

    Kind Regards,
    Skandha

    in reply to: Mobil Checkout Problem #151039
    Skandha
    Participant

    @dannyken: Glad you were able to fix the issue. Have a good day! 🙂

    Kind Regards,
    Skandha

Viewing 20 posts - 10,601 through 10,620 (of 12,034 total)