Forum Replies Created

Viewing 20 posts - 7,141 through 7,160 (of 14,505 total)
  • Author
    Posts
  • in reply to: REMOVE THE padding #36238
    Sakin
    Keymaster

    @ashrafashraf: But there won’t be enough space in iPhone to display like that so we have break that into two line.

    But if you insist then you can try following css:

    @media screen and (max-width: 767px) {
    	#site-generator .copyright, #site-generator .powered {
    		display: inline;
    		width: 47%;
    	}	
    	#site-generator .copyright {
    		float: right;
    		margin-right: 3%;
    		margin-left: 0;
    		text-align: right;
    	}
    	#site-generator .powered {
    		float: left;
    		margin-left: 3%;
    		margin-right: 0;
    		text-align: left;
    	}
    }
    in reply to: REMOVE THE padding #36232
    Sakin
    Keymaster

    @ashrafashraf: I see there is so many unnecessary css in your Custom CSS box like below.

    @media screen and (min-width: 961px) {
    #site-generator .copyright, #site-generator .powered {
        padding-top: 60px;
    }
    }
     #site-generator .powered {
    padding-top: 60px;color: black;
    font-weight: bold;
    }
    #header-content {
    }
    @media screen and (min-width: 961px) {
    }
    #site-generator .powered {
    float: right;
    width: 200px;  }
    
    #site-generator .copyright {
    float: left; width: 275px;
    }

    This padding can be controlled by changing the padding in the css I gave you. Not to add in individually live this.

    in reply to: Homepage Headline Spacing #36231
    Sakin
    Keymaster

    @Michael: No Problem. Glad it worked for you. Cheers 🙂

    in reply to: Simple Catch / catch everest / Catch Box #36227
    Sakin
    Keymaster

    @Aikoooo: Proxima Nova is paid font and it will not be available in any of the WordPress theme. WordPress only allowed to add in GPL compatible font and bundle scripts.

    So, if you want to add Proxima Nova font then you need to use service like TypeKit https://typekit.com/fonts/proxima-nova and installed with the plugin like http://wordpress.org/plugins/typekit-fonts-for-wordpress/

    in reply to: wp-pagenavi #36226
    Sakin
    Keymaster

    @ashrafashraf: Yes sure you can use it.

    in reply to: Gallery #36225
    Sakin
    Keymaster

    @ashrafashraf: For this you need to user responsive columns plugin and add it your video using columns shortcode. This option will not be there in theme by default, and falls under plugin territory.

    in reply to: Slider info text #36224
    Sakin
    Keymaster

    @Djapeto: If you are using Catch Kathmandu Free theme then you only have option to use either “Featured Post Slider” or “Feature Category Slider” both are there to highlight your posts. The text will be from the Post Title and Post Excerpt Content. So, when you click on image or title, it will link to the post assigned.

    You can see it in our Theme Instruction page at http://catchthemes.com/theme-instructions/catch-kathmandu/ where you can read “Featured Post” section for more details.

    Also you can check out tutorial about “Featured Post Slider” at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/

    But if you are using Catch Kathmandu Pro version then you have extra options to use “Image Slider” or “Page Slider”. So, in pro version you have total 4 types of slider. Which you can see at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    Also you can check out tutorial about “Featured Image Slider” at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/

    in reply to: Main nav boxes have white border #36222
    Sakin
    Keymaster

    Hi Neil,

    You can try adding in the following css in “Appearance => Theme Options => Custom CSS” box.
    #header #mainmenu ul li ul li a { font-weight: bold; }

    Regards,
    Sakin

    in reply to: REMOVE THE padding #36221
    Sakin
    Keymaster

    @ashrafashraf: Now sure what is your issue. Can you explain it and also your site in offline again.

    in reply to: add imagebackground #36166
    Sakin
    Keymaster

    @ashrafashraf: Yes I will check in all ticket. Please don’t post here and there. It’s making me confused. I will check all the question in the list as posted.

    in reply to: REMOVE THE padding #36165
    Sakin
    Keymaster

    @ashrafashraf: You can add the following css.

    #site-generator { 
    background-size: 100%;
    background-image: url("http://www.idaat.se/wp-content/uploads/2014/06/f.png");
    background-repeat: no-repeat;
    background-position: center top;
    }

    But for your padding top you need adjust as per your screen-size. Following is just a sample padding top. You can adjust as per your need.

    #site-generator { padding-top: 459px; }
    @media screen and (max-width: 1060px) {
        #site-generator { padding-top: 300px; }
    }
    @media screen and (max-width: 960px) {
        #site-generator { padding-top: 220px; }
    }
    @media screen and (max-width: 767px) {
        #site-generator { padding-top: 134px; }
    }
    @media screen and (max-width: 479px) {
        #site-generator { padding-top: 75px; }
    }
    in reply to: add imagebackground #36162
    Sakin
    Keymaster

    @ashrafashraf: Yes our wrapper with in 100px so your background image has to be bigger then that.

    in reply to: add imagebackground #36159
    Sakin
    Keymaster

    @ashrafashraf: If you have added large image then it will not be inside. As our wrapper for Catch Box theme is 1000px and anything above 1000px will show outside our wrapper.

    in reply to: Mustang – colours & fonts #36158
    Sakin
    Keymaster

    @Cybersnaby: Ok then I will give you the css to add and you can change as per your need.

    /* For Menu */
    #branding .menu { }
    /* For Widget Title */
    .widget-title { }
    /* For Content */
    .entry-content { }
    /* For gallery Title */
    .gallery .widget-title { }
    in reply to: Mustang background / header background #36156
    Sakin
    Keymaster

    @Cybersnaby: Can you send me your site URL and image URL. As when you have the following css in your child theme style.css. Make sure you have create ‘images’ directory in your child theme and added grass.jpg image inside images directory in your child theme.

    #header-bg {
     background: url("images/grass.jpg") repeat scroll 0 0 transparent;
    }
    in reply to: Centering title and menu #36155
    Sakin
    Keymaster

    @willhaley99: Can you remove the previous css that I gave you and add the following:

    #header-left {
        display: block;
        text-align: center;
        width: 100%;
    }
    #hgroup {
        width: 100%;
    }
    in reply to: Site Title Can't Be Updated #36152
    Sakin
    Keymaster

    @Laurie: Sorry it’s “Settings => General”

    in reply to: Centering title and menu #36150
    Sakin
    Keymaster

    @willhaley99: you can add the following css in “Appearance = Theme Options => Custom CSS” box to center your site title
    #header-left { float: none; }

    But for Header Right Sidebar menu, you will not be able to center it with the search.

    in reply to: youtube #36149
    Sakin
    Keymaster

    @ashrafashraf: You can either add youtube embed code or just the youtube link.

    in reply to: Main nav boxes have white border #36148
    Sakin
    Keymaster

    Hi Neil,

    For border black, you need to add the following css in “Appearance => Theme Options => Custom CSS” box.
    #header #mainmenu ul li { border-color: #000; }

    For sub-menu background color:
    #header #mainmenu ul li ul { background-color: #333; }

    Regards,
    Sakin

Viewing 20 posts - 7,141 through 7,160 (of 14,505 total)