Forum Replies Created

Viewing 20 posts - 4,521 through 4,540 (of 14,509 total)
  • Author
    Posts
  • in reply to: Translation in french #53901
    Sakin
    Keymaster

    @phoenix2875: We don’t have French Translation of Catch Responsive Theme. You need to create fr_FR.po and fr_FR.mo file using poedit software. Poedit is free software and you can download it from http://poedit.net/

    If you find difficult then you can open catchresponsive.pot file in Catch Responsive theme languages folder and then translate all the terms there any any document file. After you complete you can email me and I will include that in theme.

    in reply to: Search Box #53899
    Sakin
    Keymaster

    @Kim: This is default WordPress Search. You may find plugin which can modify that. So try searching for plugin.

    in reply to: Change Navigation Background and Font Color #53898
    Sakin
    Keymaster

    @Vanessa: Yes that’s normal we only support from IE10 onwards. IE8 is too old and it doesn’t support much of HTML5 and CSS3 codes. Even WordPress doesn’t support IE8.

    in reply to: Date Link #53897
    Sakin
    Keymaster

    @Kim: For that you need to build child theme and then copy function catchflames_posted_on() in your child theme functions.php file and remove the link.

    Sakin
    Keymaster

    @Laura Pio:
    1. For Promotion headline and subheadline text color, you can change the color code in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    /* Promotion Headline Color */
    #promotion-message h2 { color: #404040;  }
    /* Promotion Sub-Headline Color */
    #promotion-message p { color: #404040; }

    2. You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .archive-post-wrap { border: none; }

    3. You need to be more clear about this. Since, I don’t have your site URL proving support is not that easy as I need to make it log of assumption.
    For border, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #featured-content img { border: 1px solid #000; }

    But for size, it take default size Width: 400px and Height: 225px added in your page as featured image. If you upload image larger then this then it will crop exactly to this to match responsive design. But if you upload featured image in your page less then this then it will load your original image. But if you want flexible image and all then you might need to upgrade to pro version where you have option to use “Featured Image Content”, where you just uplaod the image as per your need. See the theme instructions for more details at http://catchthemes.com/theme-instructions/full-frame/

    4. To check the gallery, your site needs to live. There are various way users adds in Gallery. Our theme uses like this http://catchthemes.com/demo/full-frame/gallery/

    in reply to: Remove Search Box #53893
    Sakin
    Keymaster

    @fletchsc:
    1. I see that you have remove the Site Title. You shouldn’t remove the site title for Search Engine Optimization. But yes, if you don’t like to show in your site header then you can just hide it. For that, go to “Appearance => Customize => Site Title & Tagline”, type in Site Title and tagline which describe your site. Then to hide it just uncheck “Display Header Text” and save changes.
    2. To hide the search box/ Header Right Sidebar, you can just go to “Appearance => Customize => Theme Options => Custom CSS Options” box and add the following css:
    .sidebar-header-right { display: none; }

    in reply to: Slider size #53890
    Sakin
    Keymaster

    @Ita: Can you post in your site URL and let me know what size you want to make it. Then I can check in.

    in reply to: Additional Social Media Link #53888
    Sakin
    Keymaster

    @l: Yes, for that you need to copy function simplecatch_headersocialnetworks() in you child theme and then change the following code:

    //MySpace
    if ( !empty( $options[ 'social_myspace' ] ) ) {
    	$simplecatch_headersocialnetworks .=
    		'<li class="myspace"><a href="'.esc_url( $options[ 'social_myspace' ] ).'" title="'.sprintf( esc_attr__( '%s on MySpace', 'simplecatch' ),get_bloginfo('name') ).'" target="_blank">'.get_bloginfo( 'name' ).' MySpace </a></li>';
    }

    Note: after changing this you need to change any value in Theme Options panel to clear the transient cache otherwise you will see changes only after 24hours.

    Replace it with the following:

    //MySpace
    if ( !empty( $options[ 'social_myspace' ] ) ) {
    	$simplecatch_headersocialnetworks .=
    		'<li class="myspace"><a href="'.esc_url( $options[ 'social_myspace' ] ).'" title="'.sprintf( esc_attr__( '%s eLetter', 'simplecatch' ),get_bloginfo('name') ).'" target="_blank">'.get_bloginfo( 'name' ).' eLetter </a></li>';
    }
    in reply to: Homepage Menu Not Syncing With Back End #53887
    Sakin
    Keymaster

    @michellebergmann: You site is not visible, look like it requires login to view it. Also the link that you send me is for Gallery Archive page, not the gallery page. If it’s default WordPress gallery then it will just how one image and in the below it will say like “This gallery contains 23 photos.”.

    We also found one issue when viewing default WordPress Gallery single post. We have just uploaded new version 2.2.1 in WordPress.org and it will be live soon after the WordPress.org theme review team approves it.

    in reply to: Change Navigation Background and Font Color #53884
    Sakin
    Keymaster

    @Vanessa: I checked in from my IE11 and IE 10 and it’s working fine. Check your IE browser. You can also test it from http://netrenderer.com/

    in reply to: Change Navigation Background and Font Color #53882
    Sakin
    Keymaster

    @Vanessa: I can see our site Live. It must be your server was out at that time.

    in reply to: Gradient page background instead of solid color #53881
    Sakin
    Keymaster

    @kyle: Remove that background image and background color from your customizer and then add the following css in “Appearance => Theme Options => Custom CSS” box:

    body {
    	background: #BA3027; /* Show a solid red color for older browsers */
    	background: -moz-linear-gradient(#BA3027, #000000);
    	background: -o-linear-gradient(#BA3027, #000000);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#BA3027), to(#000000)); /* older webkit syntax */
    	background: -webkit-linear-gradient(#BA3027, #000000);
    }

    Yes, but this custom background in customizer is from WordPress core so it’s not good practice to modify core. If the WordPress core adds it then it will be there.

    in reply to: Sidebars Pushing to Bottom of Page #53879
    Sakin
    Keymaster

    @Kenny: Just increase the width of the primary and it will close the gap.

    in reply to: Sidebars Pushing to Bottom of Page #53870
    Sakin
    Keymaster

    @Kenny: This is responsive design site so you need to careful while adjusting the width of Primary(Your right content) and Secondary (your left Sidebar ). Below you will find the css that uses for various screen size. So, if you want to increase the content then increase Primary width and reduce the same amount in secondary width. After you adjust it you can add in the css in “Appearance => Theme Options => Custom CSS” box:

    /* Screen size above 961px */
    @media screen and (min-width: 961px) {
    #secondary { width: 340px; }
    #primary { width: 480px; }
    }
    /* Screen size above 1024px */
    @media screen and (min-width: 1025px) {
    #secondary { width: 340px; }
    #primary { width: 540px; }
    }
    /* Screen size above 1152px */
    @media screen and (min-width: 1153px) {
    #secondary { width: 360px; }
    #primary { width: 620px; }
    }
    /* Screen size above 1280px */
    @media screen and (min-width: 1281px) {
    #secondary { width: 380px; }
    #primary { width: 700px; }
    }
    /* Screen size above 1344px */
    @media screen and (min-width: 1345px) {
    #secondary { width: 380px; }
    #primary { width: 750px; }
    }
    in reply to: Menu Bar on Mobile Site #53847
    Sakin
    Keymaster

    @s.reinold: Thanks for your appreciation. If you like Catch Responsive theme than you can help us by providing your review and rating here at https://wordpress.org/support/view/theme-reviews/catch-responsive?rate=5#postform .

    in reply to: Sidebars Pushing to Bottom of Page #53845
    Sakin
    Keymaster

    @Kenny: Sorry I couldn’t see it. Maybe you can upload your screenshot of your site in any photosharing site and paste the URL here. So, that I don’t need to look at your site URL. So, let me know by how much you want to deduce it to.

    in reply to: Menu Bar on Mobile Site #53844
    Sakin
    Keymaster

    @s.reinold: Sorry replace the previous css I gave you with the following css:

    @media screen and (max-width: 990px) {
    .mobile-menu-text { display: block; }
    }
    in reply to: Problem in accessing social media icons #53843
    Sakin
    Keymaster

    @ertlaw: Which version of WordPress are you using it. Are you using latest version 4.1 and also send me your site URL.

    in reply to: Meta Article #53841
    Sakin
    Keymaster

    @jbadura: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .entry-meta { display: none; }

    in reply to: Problems with featured post content #53840
    Sakin
    Keymaster

    @herographics: I see that you are using Catch Base Free version where there in only Featured Page Content or Demo Featured Content. So, just go to “Appearance => Theme Options => Featured Content Options”, choose “Featured Page Content” in “Select Content Type”. Then you need to select the pages one by one/

Viewing 20 posts - 4,521 through 4,540 (of 14,509 total)