Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@st: 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
Participant@emarie_robertson: If you have any plugins installed, please try disabling it. And yes, please do share the screenshots and please post in your site url. The theme is working fine on our server.
Regards,
MaheshMahesh
Participant@sihedow: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#header-content { margin: 0 0 -8px; padding: 0; }Regards,
MaheshMahesh
Participant@stefanhoesli: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#masthead { position: fixed; z-index: 198; }Regards,
MaheshMahesh
Participant@yd: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#feature-slider .slides .entry-container { display: none; }Regards,
MaheshMahesh
Participant@bastian: Sorry for the late reply, I checked your site.
1. The slider in footer “Opdrachtgevers” seems to be working fine in all of your pages.2. Add just the background color of the right-sidebar to black and the text to white:
Go to Dashboard=> Apperance=> Customize=> Theme Options=> Custom CSS and add the following CSS:
/* Sidebar background-color to black and text to white */#secondary .widget { background-color: transparent; } #secondary { background-color: #000; } .widget .widget-title, .widget .widget-title a { color: #fff; }3. Center the social profiles (icons) under the text “Volg jij mij al”
/* Center align social icons */ .widget.widget_widget_catchflames_social_widget { text-align: center; } .social-profile { display: inline-block; }4. Make the color from the social icon profiles from grey/gray to the color black:
This is not possible as the theme uses image for social icons.Regards,
MaheshApril 22, 2016 at 4:13 pm in reply to: Fixed logo, transparent header background – no toggle bar #90158Mahesh
Participant@stefanhoesli: Thank you for using Full Frame Pro. The background of header section is actually still transparent but seems it is solid grey background because there is nothing behind just the white space background.
Regards,
MaheshMahesh
Participant@mupa: Please use the following CSS.
article.post { padding: 0; } article.post .entry-container { padding: 15px; }Do you mean to make like this?
Let me know further.Regards,
MaheshMahesh
Participant@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
Participant@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
Participant@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
Participant@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
Participant@mupa: By default, the menu has opacity of 0.7 in both Catch Adaptive Pro and Catch Adaptive Free Versions.
Regards,
MaheshMahesh
Participant@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
Participant@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
Participant@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
Participant@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
Participant@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,
Mahesh -
AuthorPosts
