Forum Replies Created

Viewing 20 posts - 13,761 through 13,780 (of 14,488 total)
  • Author
    Posts
  • in reply to: Mobile and size issue #4217
    Sakin
    Keymaster

    @frederikwa: When I check in your site with my mobile and tablet. It is working fine as per our design. I think you are confused about the term responsive. That is why I am asking what is wrong you think send me the screenshot so that I can explain it.

    in reply to: Mobile and size issue #4211
    Sakin
    Keymaster

    @frederikwa: I am not clear about what you are talking about. Can you send me the screenshot.

    in reply to: Column Width #4209
    Sakin
    Keymaster

    @frederikwa: I think I already answered you. You still have problem.

    in reply to: Column Width #4205
    Sakin
    Keymaster

    @frederikwa: There is no space to make it bigger then that.

    in reply to: Font type in Navigation menu and body #4199
    Sakin
    Keymaster

    @Poornima::You can increase the padding right:
    .entry-content td { padding-right: 5%; }

    Be careful with your padding it will damage your responsive layout. I have seen like you have added padding to #main { padding-left: 90px; }. This will create problem in small screens. If you don’t want to work your site as responsive then disable it.

    in reply to: Font type in Navigation menu and body #4197
    Sakin
    Keymaster

    @Poornima: Add the following css for font in menu
    #access ul li a { font-family: Verdana, Geneva, sans-serif; }

    But I don’t understand your table question. See this page for our default table. http://catchthemes.com/demo/simplecatch-pro/html-elements/

    in reply to: iPhone 4s iOS 6.1.2 issue? #4193
    Sakin
    Keymaster

    @Robertf: Sorry I have to close this one. I will answer in another one.

    in reply to: iPhone 4s iOS 6.1.2 issues? #4192
    Sakin
    Keymaster

    @Robertf: In custom menu also you can add home. Go to Appearance => Menu. Then in Pages, Click on View All. There you will see Home: Home. Just check that page and click on Add to menu.

    in reply to: Articles #4191
    Sakin
    Keymaster

    @Elisabetta: Yes you can hide it from the custom css. For example if you want to remove the title, date, author, category and comments of posts like this http://www.federicoalberati.com/wordpress/?p=1084 .then you can add the following css in your “Custom CSS” box in Theme Options panel
    .single .entry-header { display: none; }

    in reply to: Featured Slider Frame color #4190
    Sakin
    Keymaster

    @kirk: For the Featured Post Slider background color. You can add the following CSS in your Custom CSS box in Theme Options panel.
    #slider { background-color: #fff; }

    in reply to: Center Menu Bars(Primary and Secondary) #4189
    Sakin
    Keymaster

    @kirk: Add the following CSS in your “Custom CSS” box in Theme Options Panel.

    #branding ul.menu, #colophon #access-footer ul.menu { text-align: center; }
    #branding ul.menu li { display: inline-block; float: none; }

    in reply to: Logo FB #4188
    Sakin
    Keymaster

    @Elisabetta: Header and Footer codes are for the Scripts like Google analytics, Facebook tracking code, Add this code and other scripts that needs to load in the header or footer behind the site which is not visible to the user but needed for this type of services.

    Currently there is no option to add the text in the header. Except for the Site title and description from Settings => general and then Social Icons and Search box.

    If you want to add further then you need to build child theme and then customize the header.php and add it.

    in reply to: color of site title and tagline #4187
    Sakin
    Keymaster

    @thess: Just add the padding top in your site tagline with the help of css below. Increase the number as per you need.
    h2#site-description { padding-top: 50px; }

    in reply to: How can I change my link font color ? #4186
    Sakin
    Keymaster

    @beahowel117: First fine the color code that you want to add in http://www.w3schools.com/cssref/css_colors.asp . Then add the color as per you need. I just check in your site and you have added black color code #000 in the link color. Change that.
    #main a { color: #000; }

    in reply to: Thumbnail pic with post excerpt #4185
    Sakin
    Keymaster

    @dommyt: You forgot to add in the featured image in your posts. Just add the featured image and then it will be fine. See this on how to add featured image http://en.support.wordpress.com/featured-images/#setting-a-featured-image

    in reply to: How to Remove Image Border #4184
    Sakin
    Keymaster

    @rdbento: Just add the following CSS in the “Custom CSS” box in your theme options panel to remove the border in the images.

    .post .post-thumb a, img[class*="align"], img[class*="wp-image-"] { border: none; }

    in reply to: Different headers on different pages #4180
    Sakin
    Keymaster

    @Rufi139: That’s great. It’s the best thing about WordPress. Lots of plugin to be used. Share your experience. Thanks.

    in reply to: How can I add custom google web font ? #4179
    Sakin
    Keymaster

    @AiD: Simply add the following function in function.php in your child theme. If you add in in your theme then always keep backup when you do the update to your theme to new version.

    function simplecatch_google_fonts() {
    wp_enqueue_style('google-fonts', 'http://fonts.googleapis.com/css?family=Lora|Oswald');
    }
    add_action('wp_enqueue_scripts', 'simplecatch_google_fonts');

    in reply to: Change background color – menu, widget, footer. #4177
    Sakin
    Keymaster

    @AiD: Sorry for not being clear. For Search Button background color

    .widget_search .searchform button { background-color: #ccc; }

    You can increase the padding to increase the height of the footer by adding the following CSS in “Custom CSS” box in your Theme Options panel
    #colophon { padding: 40px 0; }

    in reply to: Adding Image behind new posts on homepage #4176
    Sakin
    Keymaster

    @truthinablog: Yes you can add the following css for each post in Homepage only.


    .home #main #content .post {
    background-image: url("http://truthinablog.organika.ca/wp-content/uploads/2013/02/BeFunky_Julie-in-Blue.jpg-210x210.jpg");
    }

Viewing 20 posts - 13,761 through 13,780 (of 14,488 total)