Forum Replies Created
-
AuthorPosts
-
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,
MaheshMahesh
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,
MaheshMahesh
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,
MaheshMahesh
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 moreRegards,
MaheshDecember 5, 2016 at 10:13 am in reply to: Clean Business Pro Transparent Menu/Title Background #104549Mahesh
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,
MaheshDecember 5, 2016 at 10:03 am in reply to: Is there an easy way to remove the blank spaces between posts. #104548Mahesh
Participant@marketingman: Let me know what color and where you want to change. Thought you mean design variation with customizations. Sorry for that.
Regards,
MaheshDecember 5, 2016 at 10:01 am in reply to: Align Primary Menu Left and Mobile menu not showing. #104547Mahesh
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,
MaheshMahesh
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,
MaheshMahesh
Participant@rodeboy: Yes, may be a caching problem. I checked your site on both desktop and mobile and no hyphens are showing.
Regards,
MaheshMahesh
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.phpfrom 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; }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,
MaheshDecember 4, 2016 at 2:53 pm in reply to: Align Primary Menu Left and Mobile menu not showing. #104504Mahesh
Participant@fastlanz: Have you customized the menu? Can find the menu anchor for mobile view. Let me know further.
Regards,
MaheshDecember 4, 2016 at 12:36 pm in reply to: Individual Posts -Color change Blog Name, Category Post Title above the Article #104501Mahesh
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,
MaheshMahesh
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,
MaheshDecember 4, 2016 at 10:53 am in reply to: Clean Business Pro Transparent Menu/Title Background #104498Mahesh
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,
MaheshMahesh
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/2gn29mhRegards,
MaheshDecember 4, 2016 at 9:55 am in reply to: Just updated: strange menu has appeared, custom CSS isn't working #104494Mahesh
Participant@heidi-bissell: Thank you for your appreciation. Have a nice day!
Regards,
MaheshDecember 4, 2016 at 9:54 am in reply to: Is there an easy way to remove the blank spaces between posts. #104493Mahesh
Participant@marketingman: If you want further customization, I recommend you to hire a customizer.
https://catchthemes.com/hire-customizer/Regards,
MaheshDecember 4, 2016 at 9:49 am in reply to: Repeated refreshing after post/page update/creation #104491Mahesh
Participant@altusfiction: We’ll contact you through an email shortly.
Regards,
Mahesh -
AuthorPosts
