Forum Replies Created

Viewing 20 posts - 2,581 through 2,600 (of 4,908 total)
  • Author
    Posts
  • Mahesh
    Participant

    @maviedecoeliaque: I checked your child theme, I remove the above block of CSS and the menu from the mobile view was gone, it fixed the issue. In fact, just removing display: block; fixed it.
    Its CSS in your child theme that is causing the issue. If you have tried removing it and it is still displays, may be some caching problem then.

    Regards,
    Mahesh

    in reply to: Three things to perfection #100494
    Mahesh
    Participant

    @masfur:
    1. Remove the shadow of site external line:
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .site {
        box-shadow: none;
    }

    – put header widgets in-line
    – set width of content at the same width of menu
    There a already there I guess i.e. header widget is inline and content width is same as of menu. Let me know further.

    Regards,
    Mahesh

    Mahesh
    Participant

    @maviedecoeliaque: Just the child theme. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Featured Image slider, small images are blank #100491
    Mahesh
    Participant

    @mj0541: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Modify H1 tags with child theme #100490
    Mahesh
    Participant

    @warmmastering: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Participant

    @quick-question: For large image, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme override fabulous_fluid_content_image (inc/extras.php) function and change this line
    <?php the_post_thumbnail(); ?>
    to
    <?php the_post_thumbnail( 'fabulous-fluid-slider' ); ?>

    The problem with the header image you are having is really strange. Its only on your server I am facing this issue. Please try resetting the settings.

    Regards,
    Mahesh

    in reply to: Excerpt blogs #100488
    Mahesh
    Participant

    @micke: You’re welcome. Have a nice day!

    Regards,
    Mahesh

    in reply to: Theme Options -> post resume options #100487
    Mahesh
    Participant

    @valeska-conducere: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Participant

    @maviedecoeliaque: Following CSS in your child theme’s style.css is causing the issue:

    #access,
    #access-footer {
    	background: #3d3d3d; /* Show a solid color for older browsers */
    	background: -moz-linear-gradient(#40A4A4, #40A4A4);
    	background: -o-linear-gradient(#40A4A4, #40A4A4);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#40A4A4), to(#40A4A4)); /* older webkit syntax */
    	background: -webkit-linear-gradient(#40A4A4, #40A4A4);
    	clear: both;
    	display: block;
    	float: left;
    	margin: 0 auto 2px;
    	width: 100%;
    }

    display: block is causing the issue.

    Regards,
    Mahesh

    Mahesh
    Participant

    @quick-question: Its kinda strange to see such problem in your server. On ours its all working just fine. If its okay for you to reset the settings, please try resetting the settings and check again.
    And I did upload the image again to the post and the thumbnails are quite same of size now.

    Regards,
    Mahesh

    in reply to: Changing font size for heading 1, 2,3 etc? #100474
    Mahesh
    Participant

    @zerolizer0: If you mean to change the size for post title h1 and comment content h1, yes adjust these from Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .entry-content h1,
    .comment-content h1 {
        font-size: 30px;
    }

    Note: Please adjust the font-size as you desire.

    Regards,
    Mahesh

    in reply to: Modify H1 tags with child theme #100473
    Mahesh
    Participant

    @warmmastering: In HTML5, you can have more then one H1 tag. That was issue only when you use HTML4 tags. In HTML5, H1 tag per article tag is good for SEO and we have carefully designed H1 tags with special attention on header tag and headings
    Catch Everest theme is build in HTML5, CSS3 and Responsive design. So, H1 is better for SEO then H2.
    You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.
    You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/
    But if you really want to change it, you can change it by building child theme and editing it.

    <h1 class=”site-title”> => see gridalicious_site_branding() (inc/gridalicious-custom-header.php)
    <h1 class=”assistive-text”>Primary Menu</h1> => see gridalicious_primary_menu(inc/gridalicious-menus.php)

    I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Featured Image slider, small images are blank #100469
    Mahesh
    Participant

    @mj0541: Its to highlight which image is displaying currently. Its how it is designed. If you want to remove it anyway, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #per-slide-template .cycle-pager-active::after {
        background-color: transparent;
    }

    If you want to keep the text color white, add the following CSS:

    #per-slide-template .cycle-pager-active h2, 
    #per-slide-template .cycle-pager-active {
        color: #fff;
    }

    Regards,
    Mahesh

    in reply to: Navbar below header? #100468
    Mahesh
    Participant

    @jacky: 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.php, add the following codes:

    function catchresponsive_child_nav_below_header_image() {
    	remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 );
    	remove_action( 'catchresponsive_before', 'catchresponsive_featured_image_display' );
    	
    	add_action( 'catchresponsive_after_header', 'catchresponsive_featured_overall_image', 20 );
    	add_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 40 );
    }
    add_action( 'init', 'catchresponsive_child_nav_below_header_image' );

    Regards,
    Mahesh

    in reply to: Excerpt blogs #100467
    Mahesh
    Participant

    @micke: Using excerpt will strip all html tags and other elements and only allows plain HTML, so you cannot have image or any styles in excerpt. However, if you have set featured image, it’ll be displayed on the top.
    The excerpt is for standard format only. If you choose other formats, the excerpt won’t work.

    Regards,
    Mahesh

    in reply to: Top level Nav – label only #100466
    Mahesh
    Participant

    @fireflywebs: You are using Catch Evolution? If so please post in relative theme thread. You’ve selected Catch Box Pro.
    Please refer to the link below:
    http://easywpguide.com/wordpress-manual/appearance/updating-the-menu/adding-a-custom-link-menu-item/
    Let me know if any problem.

    Regards,
    Mahesh

    Mahesh
    Participant

    @maviedecoeliaque: Have you done any customization in the child theme? Please activate child theme and let me know so I can check it.

    Regards,
    Mahesh

    in reply to: Theme Options -> post resume options #100464
    Mahesh
    Participant

    @valeska-conducere: As far as I understand your concern, you want to display the summary of the posts in your blog page, but you don’t want to have it in the slider. Is that what you meant? If you did mean so, yes, this can be done. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider .entry-content {
        display: none;
    }

    Then put the settings back to normal i.e. “Post Summarizes options” and readmore text.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Social Media Buttons #100463
    Mahesh
    Participant

    @dreamcatcher: Sorry, we do not have that. We are from Nepal and we provide support through forum and emails ASAP. Please follow along.
    Go to Dashboard=> Appearance=> Widgets, you’ll see CT:Social Icons widget, add it to Header Right Sidebar widget area by dragging and click save. Then check the front end, you may see the Social Icons being displayed.
    Let me know if you are still having problem.

    Regards,
    Mahesh

    in reply to: header width #100462
    Mahesh
    Participant

    @ikh1: Try the following for footer to stick to the bottom:

    #colophon {
        position: absolute;
        width: 100%;
        bottom: 0
    }

    I don’t know how you have modified the header, the menu in the header right is visible in the right of the CISER logo in the white header. And you the position is also set to absolute.
    If you want to make the white header same as body and footer, you’ll need to have following Custom CSS:

    #main-wrapper #header-featured-image {
        max-width: 1250px;
        margin: 0 auto;
    }

    Note: You’ll need to remove and customize some Custom CSS you have earlier in the Child theme’s CSS.

    Regards,
    Mahesh

Viewing 20 posts - 2,581 through 2,600 (of 4,908 total)