Forum Replies Created

Viewing 20 posts - 11,481 through 11,500 (of 14,501 total)
  • Author
    Posts
  • in reply to: Text Color #11609
    Sakin
    Keymaster

    @Hank: Can you send me your site URL?

    in reply to: General queries – Catch Everest theme #11606
    Sakin
    Keymaster

    @ImpelPro: About your subdomain and all. Please consult with your development team. We have support only for the theme related queries. Yes, you can install WordPress in Subdomain as well.

    1. How to remove the left, top, right, and bottom margin so that the page is displayed full-size on the screen?
    — You cannot just make the site Full Size. It’s the responsive design and adjust as per the screen size. To remove the top and bottom margin, you can just add the following css in “Appearance => Theme Options => Custom CSS” box.
    .site { margin: 0 auto; }

    — We don’t recommend width full size. But if you insist, you can try to add the following css in “Appearance => Theme Options => Custom CSS” box.
    .site { width: 100%; }

    2. How to ensure that when the page is made full-size the floating social media control on the left does not go outside the screen?
    —- It will be inside.

    3. Presently i have specified the css within the HTML tags on each page, how can i specify my own css and add that to the HTML tags?
    — You can add Custom CSS in “Appearance => Theme Options => Custom CSS” box.

    4. How can i customize my side-slider for individual pages, for example on careers page under resources menu
    — Oh you mean the sidebar. There is optional sidebar in Catch Everest Pro but not in free one. Maybe you can search or plugin at http://wordpress.org/extend/plugins/ for custom sidebar.

    Home Page –
    1. How to change fonts and reduce the height of footer section (footer 1, footer2, and footer3)?
    — Adjust the css as per your need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* Footer Sidebar Font */
    #footer-sidebar { font-size: 12px; font-family: sans-serif, Arial; }
    /* Footer Sidebar Widget Title Font */
    #footer-sidebar .widget-title { font-size: 20px; }
    /* Footer Widget Margin Bottom */
    #footer-sidebar .widget { margin-bottom: 50px; }

    2. How to change the fonts and spacing for Featured content options?
    — Adjust the css as per your need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #featured-post { font-family: sans-serif, Arial; }

    3. Home Page – How to resize the images for Featured content options?
    — Adjust the css as per your need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .featured-homepage-image { }

    Looking at your questions, I suggest you to hire a developer for your project. This will give your site professional look.

    in reply to: Menu Bar split #11605
    Sakin
    Keymaster

    @markTSL: Sorry that is not possible with the current setting. You need to build child theme and then register another menu for right side and then add in the css. So, for this you need to hire customizer

    in reply to: Remove top white gap on top of page #11602
    Sakin
    Keymaster

    @tault: You need to change the color code as your need. The code is fine. For example if you want to make pink like your background then it will be as below:
    #main { background-color: #da0059; }

    in reply to: How to remove from pages #11595
    Sakin
    Keymaster

    @wendell.laurent: If you are working on child theme and want to remove comment from the pages only. Then you can copy comments.php and just add following code, just above the text // Standard WordPress comments security
    if ( is_page() ) { return; }

    in reply to: What changes needed to display only post titles? #11594
    Sakin
    Keymaster

    @ispcolohost: You have to copy your archive.php and search.php and in those file replace the following code

    <?php while ( have_posts() ) : the_post(); ?>
    
    	<?php
    		/* Include the Post-Format-specific template for the content.
    		 * If you want to overload this in a child theme then include a file
    		 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    		 */
    		get_template_part( 'content', get_post_format() );
    	?>
    
    <?php endwhile; ?>

    With the following code

    <?php while ( have_posts() ) : the_post(); ?>
    
    	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    							
    		<div class="entry-container">
    			<header class="entry-header">
    				<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catcheverest' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    			</header><!-- .entry-header -->
    		</div><!-- .entry-container --> 
    	 
    	 </article><!-- .post--> 
    	 
    <?php endwhile; ?>
    in reply to: After the update, code css not working :( #11593
    Sakin
    Keymaster

    @elielhillel: Just replace the above css as below:

    #header-content {
        margin: 0;
        padding: 0;
    }
    in reply to: Remove top white gap on top of page #11591
    Sakin
    Keymaster

    @tault:
    You can manage your site title and header image from “Appearance => Header”. But looks like you have already managed it.

    You can change the background from “Appearance => Background”.

    To change the grey background from the main. You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #main { background-color: #eee; }

    in reply to: How to change the color of a link in my posts #11590
    Sakin
    Keymaster

    @klhaight: It’s from plugin that is why I am not so sure. But you can try adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #content .entry-content #multiple_slides_visible a { color: #a7a7a5; }

    in reply to: Can't Download Theme? #11589
    Sakin
    Keymaster

    @kat_hello: I have restore your account. Now you should be able to download it from your account at http://catchthemes.com/my-account/. If you still have issue, then you can contact to our sales and account directly at http://catchthemes.com/contact-us/

    in reply to: add thumbnail to serach results #11588
    Sakin
    Keymaster

    @Trishah: thanks for your appreciation.

    in reply to: Featured Slider issue #11587
    Sakin
    Keymaster

    @kdhutto1: Cheers 🙂

    in reply to: Remove top white gap on top of page #11570
    Sakin
    Keymaster

    @tault: Yes you need “No Sidebar: Full Width” Layout and upgrade to Catch Box Pro version. As you have disable the Footer create which is not allowed in Free version. that is why you also have error in footer. In Pro version there is easy to use Footer Editor options to change the footer text. See this for more details about Catch Box Pro. http://catchthemes.com/theme-instructions/catch-box-pro/

    But if you want support with Free theme, then add back the footer credit.

    in reply to: visualizing the entire Homepage at the first scroll #11569
    Sakin
    Keymaster

    @alessandra: I don’t get it what you mean. I can see your site slengineering.it smoothly

    in reply to: Center text above widgets in footer area #11567
    Sakin
    Keymaster

    @Nixos: Are you trying to center the title of the widget in the footer. Then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #supplementary .widget-title { text-align: center; }

    in reply to: Removing link from the featured slider #11566
    Sakin
    Keymaster

    @alessandra: Fist you are not allowed to remove the footer credit link from any free theme. It’s the only source of recognition for free theme and support. But if you like to change or remove it then you need to upgrade to Catch Everest Pro theme, there you have Footer Editor Options to change the footer text. You can see more details about Catch Everest Pro at http://catchthemes.com/theme-instructions/catch-everest-pro/

    About the slider, all our free themes comes with Featured Post Slider. This slider is created to highlight your Post. So, you don’t have option to remove the link. If you are developer then you can adjust the function by build the child theme. But if you want easy option, then you can use “Image Slider” where you can just upload your image, title, content, link all optional. But this option is only there in Pro version. See this screenshot https://pinterest.com/pin/548594798329509357/

    in reply to: catch-box: I can't change the default layout anymore #11565
    Sakin
    Keymaster

    @tault: Sorry I don’t understand you. Are you asking for disabling the Responsive Layout. Then you can do that from you “Appearance => Theme Options => Responsive Design”. But this option is there only in Pro and Premium version of themes.

    in reply to: Remove top white gap on top of page #11564
    Sakin
    Keymaster

    @tault: You can use “No Sidebar: Full Width” Layout. Please add in your site URL.

    Sakin
    Keymaster

    @fcast: This is not theme related issue. This is server relates issue. So, you need to contact your hosting company and fix it.

    in reply to: New Template for Landingpage #11557
    Sakin
    Keymaster

    @Fl0W: First create child theme and then add the new file disable-title.php and paste the code from http://tny.cz/2d15dc1b

Viewing 20 posts - 11,481 through 11,500 (of 14,501 total)