Forum Replies Created
-
AuthorPosts
-
Pratik
ParticipantHi @Laura,
Second code will only take effect on mobile devices. Try it with and without code and see the changes.
For what you want, please remove previous codes and add in following:
.home #content img { margin: 0 -35px; max-width: 110%; width: 110%; }Let me know how it goes.
Regards,
PratikPratik
ParticipantHi @tebitron,
For that, you will need to make modifications via child theme. First, make a child theme. Instructions for that is here: https://catchthemes.com/blog/create-child-theme-wordpress/.
Then add following code in your child theme’s functions.php file.
/** * Function to change header image position */ function fabulous_fluid_change_header_image_pos() { remove_action( 'fabulous_fluid_after_header', 'fabulous_fluid_featured_image_display', 10 ); add_action( 'fabulous_fluid_header', 'fabulous_fluid_featured_image_display', 5 ); } add_action( 'init', 'fabulous_fluid_change_header_image_pos' );This will make the desired changes. Let me know how it goes.
Regards,
PratikPratik
ParticipantJust add a link like
<a href="your_link">Read More ... </a>Pratik
ParticipantHi @pushed,
It looks like we have found the issue. The plugin that is the culprit is google-publisher-plugin-ad. There must be a google ad plugin in your theme. Please configure that plugin properly or remove it.
Regards,
PratikPratik
ParticipantHi @pushed,
Its difficult to debug this issue as it is only available in mobile version. Can you check for plugin conflicts. Please check https://catchthemes.com/wordpress-tutorials/how-to-check-for-plugin-conflicts-with-our-themes/ to see if there is a plugin conflict.Let me know the results and I will help you further.
Regards,
PratikPratik
ParticipantHi @lauzon232,
It is really difficult to say what the problem is with sceenshot only. Maybe following code will work in Appearance=> Customize=> Additional CSS:
#featured-grid-content, #featured-grid-content .wrapper { background: transparent none repeat scroll 0 0; }Let me know how it goes.
Regards,
PratikPratik
ParticipantHi @Ron,
I checked the site on the phone and desktop and in both cases the bg image is fixed? Am I missing something?
Regards,
PratikPratik
ParticipantHi @Shazz,
Try following CSS code:
#feature-slider .entry-container { display: none; }Regards,
PratikPratik
ParticipantHi @Garret,
As you can see your site, I have added two image with non clickable links and its working fine. Please check Appearance=> Customize=> Featured Slider. You can increase the number of sliders and add in new images as desired. Please do not forget to save and refresh after you have changed slider number.
For more info, please see Theme Instructions and check Featured Image Slider section.
Regards,
PratikPratik
ParticipantFebruary 19, 2017 at 10:14 am in reply to: Switch the default slider to revolution sliders + add contact at header #110223Pratik
ParticipantHi @mataibilis70,
Try following code:
#header-right aside div figure { float: left; }February 19, 2017 at 10:04 am in reply to: WordPress Catch Theme does not apply custom CSS after upgrade #110222Pratik
ParticipantHi @INFOYED,
What you want can only be achieved by using Featured Image Content, where you will be able to add custom content and link it to your page/post.
Regards,
PratikFebruary 19, 2017 at 10:01 am in reply to: Color, and thickness of the line horizontal line – in footer area #110220Pratik
ParticipantHi @knudkp,
I have tried the same code in your site and its working fine. Maybe there is some error in your custom css that’s giving the issue. Try removing all your code from Appearance=> Customize=> Additional CSS box and add following code. This is just your code formatted:
.no-sidebar.content-width #main { width: 100%; } .page .entry-title { display: none; } @media screen and (min-width: 768px) { /* Promotion Message Font Size */ #promotion-message { font-size: 15px; } /* Promotion Headline Font Size */ #promotion-message h2 { font-size: 26px; } } #supplementary .widget { padding-top: 0; padding-bottom: 0; } #promotion-message { border: none; } #featured-content .entry-excerpt { text-align: justify; } #promotion-message p { color: #151e84; } .catchbase-nav-menu #menu-item-2072 .sub-menu .sub-menu { margin: -43px 0 0 -249px; } .catchbase-nav-menu a { padding: 10px 15px; } li.tribe-events-list-widget-events { padding-top: 5px; padding-bottom: 10px; margin-bottom: 2px !important; } #supplementary { border-top: 5px solid #eee; /* Increase/decrease 5px tp increase/decrease border length */ } #first { background: #eee; /* Change #eee to desired hex color */ min-height: 540px; } #second { background: #ccc; /* Change #ccc to desired hex color */ min-height: 540px; } #third { background: #bbb; /* Change #bbb to desired hex color */ min-height: 540px; } #fourth { background: #aaa; /* Change #aaa to desired hex color */ min-height: 540px; }If this does not work, please leave the code in and let me know.
Regards,
PratikPratik
ParticipantHi @Jean,
Update process of pro theme is a bit different as it needs to be bought. Let me know if you have nay more issues.
Regards,
PratikFebruary 18, 2017 at 4:37 pm in reply to: Switch the default slider to revolution sliders + add contact at header #110182Pratik
ParticipantHi @mataiblis70,
For revolution slider, please contact revolution slider developers.
To add contact info, please add Text widget with your desired HTML to Header Right Sidebar.
Regards,
PratikPratik
ParticipantHi @paulisjob,
We have fixed this issue and it will be solved in next version. We may release by monday. If you want it solved asap, replace function fron line 1272 to line 1316 as follows:
function parallax_frame_single_content_image() { global $post, $wp_query; // Get Page ID outside Loop $page_id = $wp_query->get_queried_object_id(); if ( $post) { if ( is_attachment() ) { $parent = $post->post_parent; $metabox_feat_img = get_post_meta( $parent,'parallax-frame-featured-image', true ); } else { $metabox_feat_img = get_post_meta( $page_id,'parallax-frame-featured-image', true ); } } if ( empty( $metabox_feat_img ) || ( !is_page() && !is_single() ) ) { $metabox_feat_img = 'default'; } // Getting data from Theme Options $options = parallax_frame_get_theme_options(); $featured_image = $options['single_post_image_layout']; if ( ( 'disable' == $metabox_feat_img || '' == get_the_post_thumbnail() || ( $metabox_feat_img=='default' && 'disabled' == $featured_image ) ) ) { echo '<!-- Page/Post Single Image Disabled or No Image set in Post Thumbnail -->'; return false; } else { $class = ''; if ( 'default' == $metabox_feat_img ) { $class = $featured_image; } else { $class = 'from-metabox ' . $metabox_feat_img; $featured_image = $metabox_feat_img; } ?> <figure class="featured-image <?php echo esc_attr( $class ); ?>"> <?php the_post_thumbnail( $featured_image ); ?> </figure> <?php } }Regards,
PratikPratik
ParticipantHi @Jean,
Updating Pro theme is a bit different. Try methid given in this video: https://www.youtube.com/watch?v=W95SuabDZi8.
Let me know how it goes.
Regards,
PratikPratik
ParticipantGlad it worked out 🙂
-
AuthorPosts
