cfm168
Forum Replies Created
-
Forum: Plugins
In reply to: Contact-form-Manager Plug-inActually the system able to receive email without setting SMTP.
Forum: Fixing WordPress
In reply to: How can I have a page without post comments form?Troy,
I tried on Discussion, but no way can remove it. Can you tell me which need to be checked or unchecked? Thanks.Forum: Plugins
In reply to: [BigContact Contact Page] [Plugin: BigContact] Changes won't saveNorikDavtian,
Where can I download your 1.1.6v ?
I just tried your 1.1.4v, but Send Email not sending. How can I totally remove it from my system, and then install 1.1.6v ?
Thanks in advance.
Forum: Fixing WordPress
In reply to: How to change header#branding height in CSS?I figured it out and solved my issues. I post here to share because many WP users asking same questions. Hope it is helpful.
I set <hground id=”?”> on header.php,
then on CSS
#?{ Height:??px;
}
#branding img.logo-image {
margin-top: -??px;
}Thank you all.
Forum: Fixing WordPress
In reply to: How to change header#branding height in CSS?Thank you SwansonPhoto,
Yes, I want to
1. Move logo higher – set up top margin
2. Move header/banner image up closer to logo
3. Change background color for replacing white area.
They are within the <header>..</header>. How can code CSS for them?Forum: Themes and Templates
In reply to: How to move header image and logo higher position?Hi ESMI,
Please suggest CSS codes to over-ride it for my questions.
How about using on server’s cPanel, instead of Firebug add-on, as I unlike
install too much things on my PC.Many thanks for your advise.
Forum: Fixing WordPress
In reply to: How to adjust page headline text to higher position?Hi WPyogi,
I created only a style.css file. It is not a theme. How can I install it?
the install theme on dashboard doesn’t accept it.Forum: Fixing WordPress
In reply to: How to adjust page headline text to higher position?I believe I did activate by selecting child theme to edit.
BTW, can you tell me how to activate it?Forum: Fixing WordPress
In reply to: How to adjust page headline text to higher position?I believe WordPress instruction is wrong(at least confuring me). The “directory structure”
http://codex.wordpress.org/Child_ThemesI put twentyeleven-child directory under wp-content/theme.
Not working.
Can someone help. Thanks.Forum: Fixing WordPress
In reply to: How to adjust page headline text to higher position?I created child theme with following codes on style.css file, but nothing happen. Please advise.
/*
Theme Name: Twentyeleven Child
Description: Child theme for the twentyeleven theme
Author:
Template: twentyeleven
*/@import url(“../twentyeleven/style.css”);
#site-title a {
color: #009900;
}
.singular.page .hentry {
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
padding-top: 0;
margin-top: -30px;
}.singular .hentry {
border-bottom: medium none;
padding: 0;
position: relative;
}Forum: Fixing WordPress
In reply to: How to adjust page headline text to higher position?I want to learn before have people fix it for me.
How can I create a custom style.css child-theme for tewntyeleven 1.3v ?
I want to try to put some codes on it.
Forum: Fixing WordPress
In reply to: Where to control the logo image size?I got it. Work now by adding following codes:
On header.php
Replace <?php bloginfo( ‘name’ ); ?> by
<img class=”logo-image” src=”http://mysite.com/wp-content/themes/twentyeleven/images/site_logo.png” alt=”” />On =header / CSS
Add this:
#branding img.logo-image { width: 190px; }Thank you!
Forum: Fixing WordPress
In reply to: Where to control the logo image size?Thank you WP Bum.
Can you advise how to edit or create a CSS to control the logo size?
I’m not a good coder.Thanks in advance.
Forum: Fixing WordPress
In reply to: How to change Logo for site title?Logo show up by Deleting: <?php bloginfo(‘name’); ?> from:
<h1>“><?php bloginfo(‘name’); ?></h1>And replace it with:
<img src=”the url to image” title=”Home” alt=”” />But, the logo is enlarged.
How can I keep the original size of logo?