Forum Replies Created

Viewing 20 posts - 2,101 through 2,120 (of 4,908 total)
  • Author
    Posts
  • in reply to: Content Area and sidebar area. #104554
    Mahesh
    Participant

    @ugpost: You’ll need to change the width of the wrapper in the first place, then adjust the width of primary and secondary content And adjust their width accordingly for responsiveness. I recommend you to hire a customizer for this.

    Regards,
    Mahesh

    in reply to: Kashmandu Slider excerpt changes #104553
    Mahesh
    Participant

    @jrdphd: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #main-slider .entry-container {
        width: 250px;
        background-color: rgba( 214, 214, 214, 1);
        color: #00ff00;
        border: none;
    }
    
    #main-slider .entry-container:hover {
        color: #00ff00;
        background-color: rgba( 214, 214, 214, 1);
        border: none;
    }
    
    #main-slider .entry-container .entry-title a{
        color: #ff00ff;
    }
    
    #main-slider {
        border: none;
    }

    Note: Please adjust the value as per desired.

    Regards,
    Mahesh

    in reply to: Adjust Text in Home Page Slider #104551
    Mahesh
    Participant

    @mmhgloba: The theme by default uses sans-serif. The way you’ve changed the font to Times New Roman is correct and looks nice too.
    About the space between footer menu and copyright, seems almost the same. Let me know further.

    Regards,
    Mahesh

    in reply to: Formatting Slider title typography and position? #104550
    Mahesh
    Participant

    @vetrepreneur: Replace the above CSS with this one:

    /* First Slider */
    #feature-slider .post-149.slider-box .entry-title, 
    #feature-slider .post-149.slider-box .entry-title a,
    #feature-slider .post-149.slider-box .entry-content,
    #feature-slider .post-149.slider-box .more {
        color: #fff0ff;
        text-shadow: 2px 2px #ff0000;
    }
    /* Second Slider */
    #feature-slider .post-114.slider-box .entry-title, 
    #feature-slider .post-114.slider-box .entry-title a,
    #feature-slider .post-114.slider-box .entry-content,
    #feature-slider .post-114.slider-box .more {
        color: #ff0fff;
        text-shadow: 2px 2px #fff000;
    }
    /* Third Slider */
    #feature-slider .post-118.slider-box .entry-title, 
    #feature-slider .post-118.slider-box .entry-title a,
    #feature-slider .post-118.slider-box .entry-content,
    #feature-slider .post-118.slider-box .more {
        color: #ffff00;
        text-shadow: 2px 2px #ffcc00;
    }
    /* Forth Slider */
    #feature-slider .post-112.slider-box .entry-title, 
    #feature-slider .post-112.slider-box .entry-title a,
    #feature-slider .post-112.slider-box .entry-content,
    #feature-slider .post-112.slider-box .more {
        color: #0000ff;
        text-shadow: 2px 2px #ff00cc;
    }
    /* Fifth Slider */
    #feature-slider .post-108.slider-box .entry-title, 
    #feature-slider .post-108.slider-box .entry-title a,
    #feature-slider .post-108.slider-box .entry-content,
    #feature-slider .post-108.slider-box .more {
        color: #ffddff;
        text-shadow: 2px 2px #ff0aa0;
    }

    Is there a setting to have the thumbnail active box ‘text’ color to be white? Right now it shows black text on the blue color that represents one of our non-profit colors.
    -> Please clarify more

    Regards,
    Mahesh

    in reply to: Clean Business Pro Transparent Menu/Title Background #104549
    Mahesh
    Participant

    @kpreece1985: Thought you want to have the masthead to be solid as it float, just as in demo.
    For avoiding masthead to float, add the following CSS:

    .site-header.fixed {
        position: absolute;
    }

    Regards,
    Mahesh

    Mahesh
    Participant

    @marketingman: Let me know what color and where you want to change. Thought you mean design variation with customizations. Sorry for that.

    Regards,
    Mahesh

    in reply to: Align Primary Menu Left and Mobile menu not showing. #104547
    Mahesh
    Participant

    @fastlanz: Please try disabling plugin if you have any, one by one and see if it resolves the issue. Let me know futher.

    Regards,
    Mahesh

    in reply to: Menu Bar #104546
    Mahesh
    Participant

    @filip_1: Do you mean to change the image size of the featured image on the blog list page? If so, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in you child theme’s functions.php, add the following codes:

    add_action( 'init' , 'simplecatch_child_adjust_image_size');
    function simplecatch_child_adjust_image_size() {
        remove_image_size( 'featured');
        add_image_size( 'featured', 210, 210, false);
    }

    Note: change the dimensions as required. The default thumbnail size is 210 x 210 and set to true so it crops the image and doesn’t maintain the aspect ratio.

    For the above code to work, you have to activate the child theme. After activating, you do not have to update the all the images. Please use Regenerate Thumbnail plugin to regenerate all the images with desired sized.
    Go to “Dashboard=> Tools=> Regen. Thumbnails” and click Regenerate All Thumbnails. Then check your site, it will resize the thumbnails uncropped.

    Hope you understand.

    Regards,
    Mahesh

    in reply to: Slider Image Size & font colours #104545
    Mahesh
    Participant

    @rodeboy: Yes, may be a caching problem. I checked your site on both desktop and mobile and no hyphens are showing.

    Regards,
    Mahesh

    in reply to: Add a title to post section #104544
    Mahesh
    Participant

    @soledad-gonzalez-diaz: For that, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme, copy index.php from the main theme and just below <?php if ( have_posts() ) : ?>, add the following codes:
    <?php echo '<h1 class="custom-blog-title">Last News</h1>'; ?>
    For centering the title, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .custom-blog-title {
        text-align: center;
    }
    in reply to: Adjust Text in Home Page Slider #104505
    Mahesh
    Participant

    @mmhgloba: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #main-slider .entry-header .entry-title a {
        font-family: Arial;
        font-size: 22px;
        color: #00ff00;
    }

    Note: Change the size and color as desired.

    Regards,
    Mahesh

    in reply to: Align Primary Menu Left and Mobile menu not showing. #104504
    Mahesh
    Participant

    @fastlanz: Have you customized the menu? Can find the menu anchor for mobile view. Let me know further.

    Regards,
    Mahesh

    in reply to: Adjust Text in Home Page Slider #104502
    Mahesh
    Participant

    @mmhgloba: Please post in your site url.

    Regards,
    Mahesh

    Mahesh
    Participant

    @marketingman: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .breadcrumb ul li a {
        color: #00ff00;
    }
    
    .breadcrumb ul li a:hover, 
    .breadcrumb ul li.current_item {
        background-color: #ff00ff;
    }

    Note: Change the color as desired.

    Regards,
    Mahesh

    in reply to: Formatting Slider title typography and position? #104500
    Mahesh
    Participant

    @vetrepreneur: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider .entry-title, 
    #feature-slider .entry-title a,
    #feature-slider .entry-content,
    #feature-slider .more {
        color: #ff00ff;
    }

    Note: Please change the color as desired.

    Regards,
    Mahesh

    in reply to: Clean Business Pro Transparent Menu/Title Background #104498
    Mahesh
    Participant

    @kpreece1985: For solid black background for fixed header, add the following CSS:

    #masthead.float-header {
        background-color: rgba(0, 0, 0, 1);
    }
      
    #masthead.float-header .site-title a, 
    #masthead.float-header .site-description, 
    #masthead.float-header #mainnav ul li a {
        color: rgb(255, 255, 255);
    }

    Regards,
    Mahesh

    in reply to: Transparent Logo #104495
    Mahesh
    Participant

    @sammyjenkis: I did check it in both Chrome and Firefox, and it is transparent. Please check the image in the link below:
    http://bit.ly/2gn29mh

    Regards,
    Mahesh

    Mahesh
    Participant

    @heidi-bissell: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Participant

    @marketingman: If you want further customization, I recommend you to hire a customizer.
    https://catchthemes.com/hire-customizer/

    Regards,
    Mahesh

    in reply to: Repeated refreshing after post/page update/creation #104491
    Mahesh
    Participant

    @altusfiction: We’ll contact you through an email shortly.

    Regards,
    Mahesh

Viewing 20 posts - 2,101 through 2,120 (of 4,908 total)