Forum Replies Created

Viewing 20 posts - 6,701 through 6,720 (of 14,497 total)
  • Author
    Posts
  • in reply to: Cannot Reach Blog Page #42243
    Sakin
    Keymaster

    @JasonFBennett: What have you changed recently. As when you click on any link, it is showing “The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.”

    This is your Web Hosting Server related issues. So, please contact your Web Hosting Server Support to fix it. It must be web.config rewrite rules issue.

    in reply to: Various questions #42242
    Sakin
    Keymaster

    @egnalc: Jetpack will not mess up the editor. I think you have another plugin which is conflicting. So, try disabling other plugins.

    There is no such recommended site for your header logo. You can simply go to “Appearance = Theme Options => Header Options” and upload logo in Header logo URL or just paste your logo image URL there.

    For Catch Mustang theme, we recommend Width 978px and height 275px for featured post slider, page slider and category slider. But for Featured Image Slider, we recommend width to be 978px but height as per your need.

    in reply to: Remove Author and Date Text from Posts #42241
    Sakin
    Keymaster

    Hi Klaas,

    Yes, you cannot do that from Custom CSS. For changing the location, you need to build child theme and do the changes. It’s bit technical.

    But yes, adding spaces between can be managed by adding padding top. You can add the following css in “Appearance => Theme Options => Custom CSS” box. If you want more space then you can increase from 10px to 15px and so on.

    .entry-header .entry-meta { padding-top: 10px; }

    Regards,
    Sakin

    in reply to: Adding Social Media Icons to Header #42240
    Sakin
    Keymaster

    @runnerchick081: If you want your sidebar to be 350px with margin between to be 10px and rest for the content then you can replace your current css in “Custom CSS” box

    @media screen and (min-width: 1225px) {
    #main .wrapper { width: 1030px; }
    #primary { width: 800px; }
    #secondary { width: 200px; }
    }

    To the following css:

    @media screen and (min-width: 1150px) {	
        #main .wrapper { width: 1115px; }
        #primary { width: 754px; }
    }
    @media screen and (min-width: 961px) {		
        #secondary { width: 350px; }
    }
    in reply to: Can I change font and colors? #42239
    Sakin
    Keymaster

    @Janette: Thanks for your appreciation.

    You can add border in the slider image by adding the following css in “Appearance => Theme Options => Custom CSS” box.
    #slider-wrap img { border: 1px solid #ddd; }

    I am not so sure that you are talking about padding or margin. In widgets, we only have margin bottom. So, if you want to reduce or increase it then you can adjust the margin as per your need and then add it in “Appearance => Theme Options => Custom CSS” box
    .widget { margin-bottom: 30px; }

    in reply to: Widget on homepage #42207
    Sakin
    Keymaster

    @egnalc: You can use it aweber or mailchimp

    in reply to: How do I move Social Links to top? #42206
    Sakin
    Keymaster

    @Kim: Ok then try the position css. Add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #header-content {
        position: relative;
    }
    #sidebar-header-top {
        position: absolute;
        top: 20px;
    }
    in reply to: Featured Content Link URL #42205
    Sakin
    Keymaster

    @Anthony: Can you post in your site URL and then I will be able to check in.

    in reply to: Various questions #42204
    Sakin
    Keymaster

    @egnalc: It looks like there is conflict with your plugin. Can you disable and check in.

    Have you tried Widget Visibility module in Jetpack plugin. From this you can change the option of widget to show in particular page or all pages.

    Sorry I cannot view your purchase of Support Membership http://catchthemes.com/membership/. So, for this can you contact to our sales directly http://catchthemes.com/contact-us/ with your order ID. So, they will look into it.

    in reply to: Remove Author and Date Text from Posts #42203
    Sakin
    Keymaster

    Hi Klaas,

    So, if you just want to hide the meta just below the title and want to show below the post. Then you can replace previous css with the following:
    .entry-header .entry-meta { display: none; }

    Regards,
    Sakin

    in reply to: Remove Author and Date Text from Posts #42192
    Sakin
    Keymaster

    @Klaas: Are you using Catch Everest Theme?

    If you want to hide entry meta then you add the following css in “Appearance => Theme Options => Custom CSS” box.
    .entry-meta { display: none; }

    in reply to: Making page transparent #42187
    Sakin
    Keymaster

    @Ian1597: Yes you can change it and even add extra below that.

    in reply to: Problems with mobile version #42180
    Sakin
    Keymaster

    @Wolfgang: First you shouldn’t change core theme files inside ‘simple-catch-pro’ theme directory. As these changes will be reverted back to original when you update the theme. So, either you need to add these CSS in “Appearance => Theme Options => Custom CSS” box or you need to build child theme and add it in child theme style.css

    I will not able to check in details until you have live site URL. So, I have come up with the css on the basic of your screenshot. Try the following.

    @media screen and (max-width: 767px) {
    	#header-content {
    		background-repeat: no-repeat;
    		padding-bottom: 125px;
        		position: relative;
    	}
    	#sidebar-top {
    		bottom: 0;
    		position: absolute;
    	}
    }
    in reply to: How do I move Social Links to top? #42178
    Sakin
    Keymaster

    @Kim: Your logo is bit large. Can you reduce the width of your logo and then mode your social icon form Header Top Sidebar to Header Right Sidebar.

    in reply to: Making page transparent #42177
    Sakin
    Keymaster

    @Ian1597: That’s nice that you found it. But don’t edit core theme files inside adventurous theme directory. As the edits that you make it there will be reverted back to original when you update the theme. So, for the CSS change either you add it in “Custom CSS” box or build child theme and add it in your child theme style.css file.

    in reply to: Can I change font and colors? #42174
    Sakin
    Keymaster

    @Janette:
    1. To change the font size of tagline(site description), you can go to “Appearance => Theme Options => Font Size Options” and change “Site Description Font Size”. To change the color, you can go to “Appearance => Theme Options => Color Options” and change the color code in “Site Tagline Color”
    2. You can change to Green Color Scheme by Selecting “Green” from “Appearance => Theme Options = Color Options => Default Color Scheme”. Then you can change the individual color as per your need
    3. For widget title and widget content, you can change the font size in the following css and add it in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 961px) {
        /* For Widget Title */
        .widget-title {
            font-size: 18px;
        }
        /* For Widget Text */
        .widget-area,
        .widget ul li  {
            font-size: 14px;
        }
    }
    in reply to: Google Chrome Compatibility? #42173
    Sakin
    Keymaster

    @Signal512: Please share your site URL so that I can try it from Google Chrome.

    in reply to: Widget on homepage #42172
    Sakin
    Keymaster

    @Joaozinho: Nice it’s working 🙂

    in reply to: Remove page title on homepage only #42171
    Sakin
    Keymaster

    @Cybersnaby: For this I actually need your site URL and check in. So, send me your site URL. You can try adding in the following css in “Appearance => Theme Options => Custom CSS” box.
    .home .entry-title { display: none; }

    in reply to: Featured Image Showing 2x #42170
    Sakin
    Keymaster

    @kayla: Sorry I don’t get it what you mean. For Adventurous Featured Image in post, you have two options to play around. There is Content Featured Image Options and Header Featured Image Options. If you want to do that for overall site then you need to change that from Theme Options panel or if it is only for particular post then you need to change that from “Adventurous Options” meta box below you post editor.

Viewing 20 posts - 6,701 through 6,720 (of 14,497 total)