Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Zoran: I see to see that in you site to check the CSS. You can simply remove the background arrow by adding in the following CSS and then add the Breadcrumb Separator from “Breadcrumb NavXT => Settings”
.breadcrumb ul li a { background-image: none; }Sakin
Keymaster@ashrafashraf: Every Theme is design different way. Either you need to hire customizer to make the theme change or you need to choose the theme that matches your requirement closely. Thanks.
Sakin
Keymaster@Matthew: I am not so sure what are you trying to accomplish in your iPad. You have already modified your site to greater extend and few of your css might not be compatible with responsive design. So, if you want same design to show in your iPad then you can simply disable responsive design from “Appearance => Theme Options => Responsive Design”
Sakin
Keymaster@Zoran: Yes you can remove the background and the border of the breadcrumb by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
.breadcrumb ul li { border: none; } .breadcrumb ul li a { background-color: transparent; } .breadcrumb ul li a:hover, .breadcrumb ul li.current_item { background-color: transparent; background-position: right 8px; color: #000000; }Sakin
Keymaster@Zoran: You need to build child theme and do the customization. So, first build child theme and then copy
content.phpfile from Simple Catch Pro theme to your child theme and then replace the code
<?php the_post_thumbnail( 'featured' ); ?>
with the following
<?php the_post_thumbnail( 'thumbnail' ); ?>Then this change will take the image size of thumbnail that you have assigned in your “Settings => Media => Thumbnail size”.
Sakin
Keymaster@ashrafashraf: Sorry I don’t get it what you mean. Also when I look at your site, you are not using our theme. We only support our themes (Catch Themes). So, please ask in the Theme Authors support forum.
Sakin
Keymaster@ashrafashraf: Please ask in support forum of WordPress arabic.
Sakin
Keymaster@ozbods2: I see that you are using Post Slider in Catch Evolution Free Theme. You have added 2 posts. But in those post you haven’t added “Featured Image”. So, please add featured image in your post startherap-ease.co.uk/newsite/test/ and startherap-ease.co.uk/newsite/test2/ and it will work fine. So, after you upload the image in those post you need to set one image as “Featured Image”. http://www.pinterest.com/pin/548594798329948788/
Sakin
Keymaster@ashrafashraf: You don’t need any plugin. You need to install WordPress in Arabic Language and install the Catch Box pro theme.
Sakin
Keymaster@Troy: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box. You can change the value of padding top as per your need.
@media screen and (min-width: 768px) { #site-details { padding-top: 35px; } }Sakin
Keymaster@ralfsen: Which theme are you using. You can change out the Excerpt Layout from Theme Options panel. You can check theme instruction at http://catchthemes.com/theme-instructions/
Sakin
Keymaster@Bouncedancer: Thanks for the access and I found the problem in your site. I see that you have made all your pages as “Private” that is why it is not showing in your menus.
Sakin
Keymaster@Karin: Which top bar are you talking about. If you are talking about Menu. Then you need to create Custom Menu from “Appearance => Menus”. See theme instruction of Catch Everest Pro at http://catchthemes.com/theme-instructions/catch-everest-pro/ and for menu at http://catchthemes.com/blog/custom-menus-wordpress-themes/
February 15, 2014 at 1:06 pm in reply to: Feature Request: Font Options for Homepage Headline #20381Sakin
Keymaster@heatherlb: Yes, we will add in our update list.
But you can change the font as below:
1. Default Font Family: This will replace overall font
2. Site Title Font Family: This will just replace the Site Title Font
3. Site Tagline Font Family: This will just replace the Site Tagline Font
4. Content Title Font Family: This will just replace the Content Title Font
5. Content Body Font Family : This will just replace the Body Font
6. Headings Tags from h1 to h6 Font Family : This will just replace all the heading tags font.Sakin
Keymaster@Beachalets: I see that you are using Quick Business Website plugin which is blocking your content.
Sakin
Keymaster@TotallyGeeky: It’s a Spun theme by Caroline Moore. Sorry we only support theme developed by us (Catch Themes). You need to ask in support forum of that theme.
Sakin
Keymaster@ashrafashraf: Not all our theme are RTL supporting and translated in Arabic language.
Yes, Catch Box Pro is translated in Arabic language and support RTL. This translation os contributed by ed3s. But I don’t guarantee 100% translation. But if you find any issues then you can also contribute.You can install WordPress in Arabic language and install the theme. See this
Sakin
Keymaster@zorter: Catch Evolution Pro theme is different from Catch Everest Pro theme in many ways.
Ok I will tell you about Catch Evolution Pro theme:
Catch Evolution Pro uses default WordPress Custom Header. We will be soon adding new feature similar to Catch Everest Pro about changing Featured Header image in Different Pages and Post as assigned Featured image. But sorry there is no option at this time.For this, you need to build child theme and then create functions.php file in your child theme and add the following code.
/** * Header Image * * Uses Custom Header and Featued Images * @Hooked in catchevolution_headercontent * @since Catch Evolution 1.0 */ function catchevolution_featured_header() { global $wp_query, $post, $paged, $_wp_default_headers, $catchevolution_options_settings; $options = $catchevolution_options_settings; // Header Image $header_image_path = get_header_image(); if ( !empty ( $options['disable_header'] ) ) { return; } // Check if this is a post or page, if it has a thumbnail, and if it's a big one if ( is_singular() ) : // Houston, we have a new header image! echo '<div id="header-image">'; echo get_the_post_thumbnail( $post->ID ); echo '</div>'; elseif ( get_header_image() ) : ?> <div id="header-image"> <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /> </div> <?php endif; } // catchevolution_featured_header -
AuthorPosts
