Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@mark: You can do that from your page/post editor. See we have shown the different image alignment and how it displays.
http://catchthemes.com/demo/simplecatch-pro/catch-themes/images-test/This is more us formatting WordPress post/page. I hope this will help you http://en.support.wordpress.com/images/image-alignment/
Sakin
Keymaster@Ryan415: You forgot to add in your site URL so that I know all the placeholder that you are talking about.
Sakin
Keymaster@rvandeguchte: Nice.
Sakin
Keymaster@kteschmitt: Thanks for your appreciation. Cheers 🙂
Sakin
Keymaster@pierangelopirro: Can you send me your site URL so that I can check in.
Sakin
Keymaster@iceman027: Sorry bit confused about what are you trying to do it. Can you send me the screenshot design of what you want to do it. Then I can check in that is possible or not.
Sakin
Keymaster@Romuald: Ok I will email you personally to check in details. As in our server Catch Everest and Catch Kathmandu Pro Backend loads at the same time. Also both the backend use same code base.
Sakin
Keymaster@mergelane: Ok I will email you directly so that we can better communicate. You can upload the screenshot image in your site or any photosharing site and paste the url here.
Sakin
Keymaster@ashrafashraf: I don’t suggest changing font size in responsive design site. If you need then you need to consult with css developer. So better hire it.
Sakin
Keymaster@iceman027: I see that you have added Social Icons in Header Top Sidebar. You can remove from there and add in Header Right Sidebar so you will have logo on left and social icon on right.
Sakin
Keymaster@Richard: Sorry I haven’t used this plugin. Please as in Plugin author support forum.
Sakin
Keymaster@mark: For formatting the image and text. You need to use breaks, paragraphs and alignment while editing the post/page.
Sakin
Keymaster@christian: This means that the image you have uploaded in not larger that the large image size you have set in “Settings => Media”.
Sakin
Keymaster@ashrafashraf: there is missing bracket close
}. It will be as below:function catchbox_extra_gallery() { if ( is_page( 16 ) ) { echo do_shortcode('[go_portfolio id="flex9"]'); } } add_action( 'catchbox_before_primary', 'catchbox_extra_gallery', 15 );Sakin
Keymaster@mergelane: Still don’t get it maybe you can share your screenshot showing what you mean. For edit, you need to login in and use the header bar where there will be edit.
Sakin
Keymaster@christian: You can upload the image form Media Uploader and add the image URL in “Appearance => Theme Options => Header Options => Logo URL”. Yes, can you send me the screenshot issues with Change Header Logo button.
Sakin
Keymaster@kteschmitt: Ok here is the code. You just need to create empty functions.php file in your child theme and then add the following code.
<?php /** * Catch Box Child Theme functions and definitions * */ /** * Header Menu * * @since Catch Box 2.5 */ function catchbox_header_menu() { ?> <nav id="access" role="navigation"> <h3 class="assistive-text"><?php _e( 'Primary menu', 'catchbox' ); ?></h3> <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?> <div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'catchbox' ); ?>"><?php _e( 'Skip to primary content', 'catchbox' ); ?></a></div> <div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'catchbox' ); ?>"><?php _e( 'Skip to secondary content', 'catchbox' ); ?></a></div> <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?> <?php if ( has_nav_menu( 'primary', 'catchbox' ) ) { $args = array( 'theme_location' => 'primary', 'container_class' => 'menu-header-container', 'items_wrap' => '<ul class="menu">%3$s</ul>' ); wp_nav_menu( $args ); } else { echo '<div class="menu-header-container">'; wp_page_menu( array( 'menu_class' => 'menu' ) ); echo '</div>'; } ?> </nav><!-- #access --> <?php if ( has_nav_menu( 'secondary' ) && is_page(array('375', '333', '327', '381', '335' ) ) ) { // Check is footer menu is enable or not $options = catchbox_get_theme_options(); if ( !empty ($options ['enable_menus'] ) ) : $menuclass = "mobile-enable"; else : $menuclass = "mobile-disable"; endif; ?> <nav id="access-secondary" class="<?php echo $menuclass; ?>" role="navigation"> <h3 class="assistive-text"><?php _e( 'Secondary menu', 'catchbox' ); ?></h3> <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?> <div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'catchbox' ); ?>"><?php _e( 'Skip to primary content', 'catchbox' ); ?></a></div> <div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'catchbox' ); ?>"><?php _e( 'Skip to secondary content', 'catchbox' ); ?></a></div> <?php wp_nav_menu( array( 'theme_location' => 'secondary', 'container_class' => 'menu-secondary-container' ) ); ?> </nav> <?php } }Sakin
Keymaster@ashrafashraf: Yes that Page ID 42 is just sample, you need to add the ID of the page where you want the slider.
You can add the following css in “Appearance => Theme Options => Custom CSS” box.
.easingsliderlite, .easingsliderlite-shadow { margin: 0 auto !important; } -
AuthorPosts
