Forum Replies Created

Viewing 20 posts - 13,781 through 13,800 (of 14,500 total)
  • Author
    Posts
  • 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");
    }

    in reply to: Column Width #4175
    Sakin
    Keymaster

    @frederikwa: I checked in your site http://oddsresults.com/ and I haven’t seen that you have added the above css in “Custom CSS” box in your Theme Options. Please add that and let me know. Then only I can check your site status.

    in reply to: Column Width #4154
    Sakin
    Keymaster

    @frederikwa: You can add the following css in your custom css box in your Theme Options panel.

    #primary {
    margin: 0 -19% 0 0;
    }
    #content {
    margin: 0 22% 0 3%;
    width: 75%;
    }
    #secondary {
    width: 16%;
    }

    in reply to: Logo FB #4153
    Sakin
    Keymaster

    @Elisabetta: just add the following css in your Custom CSS box in your Theme Options panel.

    ul.social-profile li.facebook a {
    background-position: 0 -43px;
    }
    ul.social-profile li.facebook a:hover {
    background-position: 0 0;
    }

    in reply to: Blog Posts #4152
    Sakin
    Keymaster

    @HeatherSilva: I don’t understand what is your problem. You can just add in your post and then it will show it. Can you tell me more details about your problem and also add in your site URL.

    in reply to: Change image alignment #4151
    Sakin
    Keymaster

    @Nicoleabouttown: For that you need to select “Show full content” in Content layout in your theme options. Then in your post add the thumbnail image with align left and content then this will work fine.

    in reply to: Custom background color per page #4150
    Sakin
    Keymaster

    @Rufi139: You cad add in with your Custom CSS. Can you send me the color code and the pages that you want to change and then I can send your the css.

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

    @rdbento: Can you send me your site URL please. So, that I can send you the “Custom CSS” that you can add in.

    in reply to: homepage preferred posts and categories #4147
    Sakin
    Keymaster

    @belgianbingo: Please add in your Site URL and also I don’t understand your question properly. Maybe you can list one by one on the task.

Viewing 20 posts - 13,781 through 13,800 (of 14,500 total)