Forum Replies Created

Viewing 20 posts - 2,001 through 2,020 (of 4,908 total)
  • Author
    Posts
  • in reply to: Upload_max-filesize error (catch responsive pro) #105289
    Mahesh
    Participant

    @habo: This is a server issue. Either use FTP to upload the plugin, or contact the server for the issue.
    I don’t about the extra background. Please clarify more.

    Regards,
    Mahesh

    in reply to: Background Image Only on Homepage #105279
    Mahesh
    Participant

    @gargoyle35: For home page, go to Dashboard=> Appearance=> Customize=> Additional CSS and add the following CSS:

    body.home {
        background-image: url("url-to-image-1");
        background-position: center center;
        background-size: cover;
    }

    For sergi page, add the following CSS:

    body.page-id-13 {
        background-image: url("url-to-image-2");
        background-position: center center;
        background-size: cover;
    }

    Note: Please replace the image url in the above codes (url-to-image-2) with you desired image url.

    Regards,
    Mahesh

    in reply to: WP working weird after updating Theme to 4.7 #105278
    Mahesh
    Participant

    @inforapunzel-will-raus-ch: We’ll need to check on your server. We’ll contact you through email shortly.

    Regards,
    Mahesh

    in reply to: Images in widgets not loading after update to 1.8 #105277
    Mahesh
    Participant

    @mwybranowski: Is the plugin working fine with other theme? Seems like it is a plugin issue.

    Regards,
    Mahesh

    in reply to: Images on blog posts #105273
    Mahesh
    Participant

    @theproteinnut: Yes, theme works fine with Contact Form 7. And about the image in that particular page. It is from the metabox. Go to edit page and make sure Default option is selected in Single Page/Post Image Layout . Then click update.

    Regards,
    Mahesh

    Mahesh
    Participant

    @chirsdug: Please contact the plugin support for the issue. This is the most we can do from the theme point of view.
    Hope you understand.

    Regards,
    Mahesh

    in reply to: Place of sidebar on (optional) archive page #105269
    Mahesh
    Participant

    @gmg-jet: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Help me with the mobile plataform show up #105268
    Mahesh
    Participant

    @jailma-santos: Since you are using WordPress 4.6.1, please use the theme’s custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (max-width: 600px) {
        #feature-slider .cycle-slideshow img {
            height: 300px
        }
    }

    Regards,
    Mahesh

    in reply to: Background Image Only on Homepage #105267
    Mahesh
    Participant

    @gargoyle35: Yes, this can be done with Custom CSS. Where do you actually want to use the background image? Let me know further.

    Regards,
    Mahesh

    in reply to: Not Transparent Header on Rock Star #105266
    Mahesh
    Participant

    @gargoyle35: Go to Dashboard=> Appearance=> Customize=> Additional CSS and add the following CSS:

    .header-bg #masthead {
        background-color: rgba(0, 0, 0, 0.7);
    }

    Regards,
    Mahesh

    Mahesh
    Participant

    @serpico57: Catch Evolution Pro 3.4.1 has been released and is totally compatible with WordPress 4.7. You can update the theme and WordPress. For the plugins, you’ll need to check it further.
    Hope you understand.

    Regards,
    Mahesh

    in reply to: WP working weird after updating Theme to 4.7 #105212
    Mahesh
    Participant

    @inforapunzel-will-raus-ch: Did the update execute successfully? Sometimes the update doesn’t occur successfully and hence gives such problem. Please update the theme again and see if it resolves the issue.

    Regards,
    Mahesh

    in reply to: Javascript being excluded by #105211
    Mahesh
    Participant

    @bobgarretthomenetworks-co-uk: Sorry, this is not possible.

    Regards,
    Mahesh

    in reply to: Place of sidebar on (optional) archive page #105210
    Mahesh
    Participant

    @gmg-jet: Have you changed the layout option for pages in meta-box in edit page? Go to edit page of the very page, and make sure Default is selected in Layout Option in Gridalicious Options. And click update. I tested on our server and it is working fine.
    Let me know further.

    Regards,
    Mahesh

    in reply to: WP working weird after updating Theme to 4.7 #105208
    Mahesh
    Participant

    @inforapunzel-will-raus-ch: The problem is with Catch Web Tools, will be fixed in next update of the plugin, which will be released soon. And for the other issue, please post in your site url.

    Regards,
    Mahesh

    in reply to: iPhone Bug page disappears #105202
    Mahesh
    Participant

    @skynet: I checked the same on the iPhone horizontal and vertical both and yes found the issue only when you have to open tabs. When only one tab, no such issue. We are checking on it and will let you know as soon as we find the solution.

    Regards,
    Mahesh

    in reply to: Featured Slider Loop #105201
    Mahesh
    Participant

    @edvasquez: Featured Slider stopping, this is not possible simply. You’ll need to customize the theme further for this. And for changing content text size and making it bold, go to Dashboard=> Appearance=> Customize=> Additional CSS:

     #slideshow .entry-title {
    	font-size: 50px;
    	font-weight: bold;
    }
    
    #slideshow .subtitle {
    	font-size: 25px;
    	font-weight: bold;
    }

    Regards,
    Mahesh

    in reply to: Footer menu with sub menus #105200
    Mahesh
    Participant

    @ruben92: It creates a bug in the footer menu when sub menu is used. It puts up some unnecessary white spaces. That’s why it is removed. But if you do want this, you’ll need to create a child theme. You can find more details on creating child theme HERE.
    Then in you child theme’s functions.php add the following codes.

    function adventurous_footer_menu() {
    	if ( has_nav_menu( 'footer' ) ) { ?>
            <div id="footer-menu">
                <nav id="access-footer" role="navigation">
                    <h2 class="assistive-text"><?php _e( 'Footer Menu', 'adventurous-pro' ); ?></h2>
                    <?php
                            $args = array(
                                'theme_location'  => 'footer',
                                'container_class' => 'menu-footer-container',
                                'items_wrap'      => '<ul class="menu">%3$s</ul>',
                            );
                            wp_nav_menu( $args );
                    ?>
                </nav><!-- .site-navigation .main-navigation -->
    		</div>
        <?php
    	}
    } // adventurous_footer_menu

    Regards,
    Mahesh

    in reply to: Seo mess! This theme add lot and unrelated heading tags #105197
    Mahesh
    Participant

    @pietromessa: 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.

    Primary and Secondary menu are the assistive-text. If you want to edit any of the Tags, you can create a child theme and customize it further as desired.

    Regards,
    Mahesh

    in reply to: White space between header and menu #105194
    Mahesh
    Participant

    @lewishm: No, you’ll need to do some customization for this. And no, this cannot be done with Pro version either.
    I’ve edited the previous CSS above please use it, hope it helps.

    Regards,
    Mahesh

Viewing 20 posts - 2,001 through 2,020 (of 4,908 total)