Forum Replies Created

Viewing 20 posts - 11,921 through 11,940 (of 12,027 total)
  • Author
    Posts
  • in reply to: Excerpt options #131671
    Skandha
    Participant

    @ann84: You will need to create a child theme for this and add the following code to your child theme’s functions.php file. You can check out the link above if you don’t know how to create a child theme

    function custom_short_excerpt($excerpt){
    	return substr($excerpt, 0, 200);
    }
    add_filter('the_excerpt', 'custom_short_excerpt');

    Let me know if this solves your issue!

    Regards,
    Skandha

    in reply to: Change color of words in Header Right Widget area #131652
    Skandha
    Participant

    @kmckay: The link you posted doesn’t seem to be accessible. Let me know when your site is accessible.

    Regards,
    Skandha

    in reply to: Change Color for post-title #131607
    Skandha
    Participant

    @artpriskaleutenegger-ch: Go to => Appearance => Customize => Additional CSS and add the following CSS Code

    .single-post .site-main .entry-title {
         background-color: white;
    }

    Let me know if this does the trick!

    Regards,
    Skandha

    in reply to: change font color in header media text #131576
    Skandha
    Participant

    @cheryl: Glad the issue is resolved!

    Regards,
    Skandha

    in reply to: Jomsom Pro Submenus #131373
    Skandha
    Participant

    @dnelson503: Glad to know the issue is resolved! Have a good day!

    Regards,
    Skandha

    in reply to: Changing Color of Bullets for Decree Pro #131372
    Skandha
    Participant

    @pharte: To change the button color on hover Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .button-minimal:hover, .button-minimal:focus {
         background-color: #000066;
    }

    To change the color of featured slider arrow on hover Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #feature-slider .cycle-prev:hover, #feature-slider .cycle-prev:focus, #feature-slider .cycle-next:hover, #feature-slider .cycle-next:focus {
         color: #000066;
    }

    You can change the color according to your requirement!
    Let me know if this solves your issue!

    Regards,
    Skandha

    in reply to: Change white background color #131371
    Skandha
    Participant

    @vasilvideomakers: If you mean to change the background color of the page to black then Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #content {
        background-color: #000;
    }

    Let me know if you have anymore issues!

    Regards,
    Skandha

    in reply to: Front page boxes #131302
    Skandha
    Participant

    @ydigilov: For the image at the top of the society page to be full width of screen you will need to change the page-width to 100%. That results in text on this page also being displayed as full width. Let me know what you want to do with this.

    To make logo clickable for only certain area of the image you will need to get your site customized. I suggest you to hire a customizer.

    Let me know if your have anymore issues!

    Regards,
    Skandha

    in reply to: Changing Color of Bullets for Decree Pro #131295
    Skandha
    Participant

    @pharte: If you mean to change the border color of “View Larger Map” button then Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #contact-info-section .content-info-wrapper a {
          border-color: #000066;
    }

    Let me know if you have anymore issues!

    Regards,
    Skandha

    in reply to: Change white background color #131294
    Skandha
    Participant

    @vasilvideomakers: You can use Jetpack Plugin from the wordpress plugin repository to create a gallery in the homepage. You can check out this link to know how to create a gallery using jetpack plugin.

    Let me know if this solves your issue!

    Regards,
    Skandha

    in reply to: Thank you for the fantastic job you guys do #131229
    Skandha
    Participant

    @skynet: Thank you so much for appreciating our work. We will continue supporting our themes.

    Regards,
    Catch Themes Team

    in reply to: So much space that can not be used on Comment Area #131213
    Skandha
    Participant

    @skynet. Glad to know it worked out well. Have a good day!

    Regards,
    Skandha

    in reply to: Changing Color of Bullets for Decree Pro #131212
    Skandha
    Participant

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

    To Change the color of dots in the feature slider:

    #feature-slider .cycle-pager span.cycle-pager-active {
        color: #colorcode;
    }

    Replace #colorcode with the color of your choice.

    Please post in you site URL so that i can provide you with CSS Code to change color of the button at the footer.

    Let me know if you have anymore issues!

    Regards,
    Skandha

    in reply to: Jomsom Pro Submenus #131211
    Skandha
    Participant

    @dnelson503: “Our Dogs Past and Present” is the sub-menu of About. Can you please clarify where you want the menu “Our Dogs Past and Present” to be.

    If you want to create “About” menu as just a navigational tab and not to be linked to a page do the following:
    Go to => Appearance => Customize => Menus => Choose the menu where you want to add “About” =>
    Add Item => Select Custom Link
    and type Link text as “About” and “#” in the URL box. This way you can create About as just a navigational tab.

    Let me know if you have any more issues!

    Regards,
    Skandha

    in reply to: So much space that can not be used on Comment Area #131209
    Skandha
    Participant

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

    .comment-content {
    	width:100%;
    	margin:auto;
    }
    
    .comment-meta {
    	margin: auto;
    }
    
    .nav-previous {
    	width: 100%;
    }

    Let me know if this solves your issue!

    Regards,
    Skandha

    in reply to: favicon #131134
    Skandha
    Participant

    @Glen: Go to => Appearance => Customize => Site Identity => Site Icon => Upload the image you want to display as favicon.

    Let me know if you have anymore issues!

    Regards,
    Skandha

    in reply to: Remove little 'star' image on every page #131106
    Skandha
    Participant

    @robert: Glad to know the issue is resolved. Have a good day.

    Regards,
    Skandha

    in reply to: How can I remove the White Border Inside Image #131063
    Skandha
    Participant

    @skynet: Glad that the issue is resolved. Have a good day!

    Regards,
    Skandha

    Skandha
    Participant

    @Akki94316: Glad that you could solve the issue! Have a good day!

    Regards,
    Skandha

    in reply to: How can I remove the White Border Inside Image #131060
    Skandha
    Participant

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

    .entry-content img {
          padding:0;
    }

    Let me know if this solves your issue!

    Regards,
    Skandha

Viewing 20 posts - 11,921 through 11,940 (of 12,027 total)