Forum Replies Created
-
AuthorPosts
-
Mahesh
Member@hollyehrocketmail-com: I’m afraid this is not possible, only the link in custom menu can be edited/customized.
Regards,
MaheshMahesh
Member@holleyhrocketmail-com: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add any of the following CSS as required:
For Blog List Page
1. For disabling posted date from all posts:.blog #content .post .entry-meta { display: none; }2. For disabling posted date from selected posts(Hides post date from post titled Lucid Dreaming):
.blog #content .post.post-2925 .entry-meta { display: none; }For Blog Single Page
1. For disabling posted date from all single page posts (Entire site):.single #content .post .posted-on { display: none; }2. For disabling posted date from selected single page posts(Hides post date from post titled Lucid Dreaming):
.single #content .post.post-2925 .posted-on { display: none; }Let me know if any trouble.
Regards,
MaheshMahesh
Member@hollyehrocketmail-com: Do you mean to change the home url in menu. If you have used the default page menu, then home page should link to your default site URL. If you want to user custom links for home, then you will need to create custom links.
Details for this is here: https://codex.wordpress.org/WordPress_Menu_User_Guide
Let me know if this is what you wanted.Regards,
MaheshMahesh
Member@abhishek1975: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#secondary-menu { background-color: #dd9221; }Regards,
MaheshMahesh
Member@husker: I don’t know why but padding in <td> tag is causing the issue, using following CSS fixed the issue for you test-image page:
table td:nth-child(4n+4), table td:nth-child(4n+1) { width: 40%; }Let me know if this helps.
Regards,
MaheshMahesh
Member@husker: You are using image with different sizes that is why you are facing the issue. Please use the images with same resolutions in the table.
Regards,
MaheshMahesh
Member@shawzepe: Sorry for making you repost you site url. Checked your site, and seems the search bar in your site is not the default theme’s search bar. Have you customized the theme and added some code to display the search bar? if yes, you have to remove it. You have already hidden the default search bar of the theme with Custom CSS.
Let me know further.Regards,
MaheshMarch 14, 2016 at 9:55 am in reply to: Primary menu holds less text than in the non-Pro theme #87422Mahesh
Member@zhpvwebmaster: Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Member@matthewseanmclachlan: You are missing a closing brace at the end of your Custom CSS.
1. To turn off transparency on header top you can change your existing code in Custom CSS:#header-top { background: #ea3b36; background: rgba(234, 53, 54, 0.7); box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); position: fixed; z-index: 99; }to the following:
#header-top { background: #ea3b36; background: rgba(234, 53, 54, 1); box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); position: fixed; z-index: 99; }2. Making only white part transparent in post:
For semi-transparent.post.post-32 { background: rgba(255, 255, 255, 0.5); }OR for fully transparent:
.post.post-32 { background: rgba(255, 255, 255, 0); }3. Making only white part transparent in footer:
#site-generator { background: rgba(255, 255, 255, 0.5); } #colophon { background-color: transparent; }Note: For full transparency, change the last attribute 0.5 to 0 in background as in number 2.
Let me know if any problem.Regards,
MaheshMarch 13, 2016 at 2:13 pm in reply to: Primary menu holds less text than in the non-Pro theme #87391Mahesh
MemberHi @zhpvwebmaster,
Thank you for using Catch Responsive Pro.
There should not be any differences in design in Free and Pro versions. For changing menu text font size, add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:.catchresponsive-nav-menu .menu-item a { font-size: 14px; }Note: Please add adjust font size as desired.
Let me know if any trouble.Regards,
MaheshMahesh
Member@husker: Please add the following CSS and it will fix the issue.
@media screen and (max-width: 1081px) and (min-width: 480px) { #supplementary .widget-area:nth-child(2n+1) { clear: none; } #supplementary.three .widget-area, #supplementary.two .widget-area { width: 33.33%; } }Let me know if any problem.
Regards,
MaheshMahesh
MemberHi @vimoksha,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#main-slider .featured-slider .entry-container { display: none; }Regards,
MaheshMahesh
Member@matthewseanmclachlan: Please check the following:
1. Turn off transparency on the top menu bar:#header-top { background: rgba(234, 53, 54, 1) none repeat scroll 0 0; }2. make -some- of posts transparent: You’ll need to add Custom CSS for each post class like follows (Example: Projects)
.post.post-32 { opacity: 0.5; }3. Make footer tranparent:
#colophon { opacity: 0.5; }Let me know if any trouble.
Regards,
MaheshMahesh
Member@sziszi: Glad to know that you’ve found the solution to your first issue. As for the second issue, you are using image inside the content, you’ll Custom CSS to remove it. Please add the following CSS:
.blog #content .post.hentry img { display: none; }Let me know if any problem.
Regards,
MaheshMahesh
MemberHi @skrao,
Just checked your site, seems you’ve removed the featured content section from the homepage. The problem is because, it is only showing the excerpt, and the excerpt escapes all the html and styling from the content. If you want to retain all the formatting as it is, then go to “Dashboard=> Appearance=> Customize=> Featured Content” and select Show Full Content from Display Content option.
Let me know if any problem.Regards,
MaheshMahesh
MemberHi sbartsch,
Please add the following CSS in Custom CSS box:
.entry-header h1, .entry-content h1, .entry-content h2 { line-height: 1.3; }Hope this helps. Let me know if any problem.
Regards,
MaheshMahesh
Member@husker: In your child theme’s
functions.phpadd the following codes:add_action( 'init', 'catchresponsive_child_slider_below_promotion_headline' ); function catchresponsive_child_slider_below_promotion_headline(){ remove_action( 'catchresponsive_before_content', 'catchresponsive_featured_slider', 10 ); remove_action( 'catchresponsive_before_content', 'catchresponsive_promotion_headline', 30 ); add_action( 'catchresponsive_before_content', 'catchresponsive_promotion_headline', 10 ); add_action( 'catchresponsive_before_content', 'catchresponsive_featured_slider', 30 ); }Regards,
MaheshMahesh
Member@bencarton23: Thank you for using Clean Journal Pro. Yes, you can use the image. It is licensed under GPL v2.0.
Regards,
Mahesh -
AuthorPosts
