Forum Replies Created
-
AuthorPosts
-
Mahesh
Member@mupa: Yes, I did read it and it is not a bug. I don’t know why you are trying to make the primary menu and sub-menu’s background transparent with Custom CSS since it is already transparent by default setting. I didn’t any values in color option as you’ve mentioned above as it is a bug or something. The screenshot I’ve taken is just activating the theme and changed nothing in customizer.
Please check the images in the below link:
Catch Adaptive Pro img link: http://goo.gl/gH9bCo
Catch Adaptive img link: http://goo.gl/azwu6fRegards,
MaheshMahesh
Member@asumi:
1. problem with the clean journal design (mobile version):
This issue is because of #main div’s width fixed to 900px, you’ll need to add media queries for responsive design / mobile friendly design.
Example:@media screen and (max-width:480px) { #main { width: 100%; } .sidebar-primary { width: 100%; } }2. And by magic box, do you mean the widget with text “Magic Action Box…”? Well it is in the sidebar and for responsive design, the sidebar will automatically move just below the main content.
Regards,
MaheshMahesh
Member@eirikurva and @business901: Please fill up this form with your issue and details and we will check the in your server.
https://catchthemes.com/blog/customizer-not-working-wordpress-update/Regards,
MaheshMahesh
Member@alexch: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s
functions.phpadd the following codes.add_action( 'init', 'catchresponsive_child_menu_after_slider' ); function catchresponsive_child_menu_after_slider() { remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 ); add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 11 ); }Note: If you want to remove the padding-bottom of slider. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#feature-slider { padding-bottom: 0; }Regards,
MaheshMahesh
Member@mupa: By default, the menu has opacity of 0.7 in both Catch Adaptive Pro and Catch Adaptive Free Versions.
Regards,
MaheshMahesh
Member@centaine: In your Custom CSS, you have following CSS:
#branding { clip: rect(1px 1px 1px 1px); /* IE7 */ clip: rect(1px, 1px, 1px, 1px); position: absolute; }And it is causing the issue.
Regards,
MaheshMahesh
Member@mupa: Sorry for the late reply. Thank you for using Catch Adaptive Pro. Can you please clarify more with an image as an example.
Regards,
MaheshMahesh
Member@nagesh-seogmail-com: Are you trying to add the buttons with plugin or just the links/codes? Since in Catch Responsive Free, header right section comes directly through code and the content cannot be modified through dashboard, you’ll need to create a child theme and override the following function.
function catchresponsive_header_right() { ?> <aside class="sidebar sidebar-header-right widget-area"> <section class="widget widget_search" id="header-right-search"> <div class="widget-wrap"> <?php echo get_search_form(); ?> </div> </section> <?php if ( '' != ( $catchresponsive_social_icons = catchresponsive_get_social_icons() ) ) { ?> <section class="widget widget_catchresponsive_social_icons" id="header-right-social-icons"> <div class="widget-wrap"> <?php echo $catchresponsive_social_icons; ?> </div><!-- .widget-wrap --> </section><!-- #header-right-social-icons --> <?php } ?> </aside><!-- .sidebar .header-sidebar .widget-area --> <?php }Note: You can find more on creating child theme HERE.
Regards,
MaheshMahesh
Member@antoon: Nope, its working fine. Try removing it and check the difference (you’ll see small space change). I guess there is no other options.
Regards,
MaheshMahesh
Member@antoon: Sorry, you mean to align the text to left in center, I thought you just want to align them to the left. Following code will work for that, but as you have the Menu title also inside the table, it’ll move title to too.
.entry-content td:nth-child(1) { padding: 0 0 0 140px; text-align: left; }Regards,
MaheshMahesh
Member@antoon: What seems to be the problem? You don’t have the code in the Custom CSS, have you removed it?
Regards,
MaheshMahesh
Member@techfinderr: For that add the following CSS, hope this works:
@media screen and (min-width: 981px) { #homepage-message .left-section { margin-left: 15%; } #homepage-message .right-section { margin-right: 15%; } }Note: Please remove the previous CSS first.
Regards,
MaheshMahesh
Member@eirikurva: Please try deactivating your plugins one by one and check if the issue resolves.
Let me know if any problem.Regards,
MaheshMahesh
Membertechfinderr: Please replace the code I’ve given:
@media screen and (min-width: 481px) { #homepage-message .left-section { text-align: center; width: 80%; } }with the following:
#homepage-message .left-section { float: none; margin-bottom: 15px; text-align: center; width: 100%; } #homepage-message .right-section { float: none; width: 178px; margin: 0 auto }Hope this helps.
Regards,
MaheshMahesh
Member@eirikurva: Before WordPress 4.5, Catch Box Pro was using WordPress’s Custom Header as logo and since WordPress 4.5 provides Custom Logo, we have modified the code to support the WordPress Core support and then add Header Image feature which uses WordPress Custom Header. And since you’ve put images in both logo and custom header, two images are shown in you site. Please remove one of the image (Custom Logo or Custom Header). Go to :
1. For Custom Logo: Dashboard=> Appearance=> Customize=> Site identity and remove Logo
2. For Custom Header: Dashboard=> Appearance=> Customize=> Header Image and Hide ImageHope you understand. Let me know if any problem occurs.
Regards,
MaheshApril 21, 2016 at 10:35 am in reply to: Header Featured Image Options gone after upgrading to WP 4.5 #90054Mahesh
Member@cyberbox: Since WordPress 4.5, Catch Kathmandu theme has been a bit modified. For Header Featured Image, it now uses WordPress’s core Custom Header instead of using theme’s own Custom Header. All the functionality and settings are the same just difference is you will need to use Customizer.
Hope you understand. Let me know if any problem occurs.Regards,
MaheshMahesh
Member@asumi:
1. I checked your site and assume that you’ve managed to do the change by yourself.
2. For making the sidebar smaller, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:#main { width: 920px; } .sidebar-primary { width: 240px; }This will make the sidebar smaller for desktops, for small device and responsive design you’ll need to add media queries.
Note: The width of the all widget as set to same but the height of the widget depends on the length of the content.Regads,
MaheshMahesh
Member@alesia90230: Thank you for using Catch Evolution Pro.
1. Line height of my primary menu text:
Go to Dashboard=> Appearance=> Customize=> Theme Options => Custom CSS box and add the following CSS:#header-menu ul.menu a { line-height: 2em; }2. Reduce the size of my photos in the featured slider: Can you please clarify more on this?
Regards,
MaheshMahesh
Member@antoon: Please add the following CSS:
1. Left side to be aligned to the left.entry-content td:nth-child(1) { padding: 0; text-align: left; } .entry-content td:nth-child(2) { padding: 0; text-align: center; }2. White space between the items
.entry-content td { line-height: 1; }Regards,
Mahesh -
AuthorPosts
