Bharath
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Side bar editingHi,
Can you please provide a link to the site, so that I can have a look and answer your questions.
Thanks,
BharathForum: Themes and Templates
In reply to: Weird dots showing up next to widgets on side bar….Hi,
Add the following CSS to the bottom of your style.css
#sidebar2 .widget { list-style-type: none; }
Thanks,
BharathForum: Themes and Templates
In reply to: Caption frame has gotten bigger since 3.1Add this to the bottom of your style.css
#content .wp-caption p {
margin: 5px;
}Forum: Themes and Templates
In reply to: remove "posted on" "comments" and "posted in" ?A link to your site would be helpful to answer.
Forum: Themes and Templates
In reply to: Cannot remove standard indent from nav menuLink to your site would be helpful.
Forum: Themes and Templates
In reply to: Removing the 'Leave a Comment' link at the bottom of the pageIn your single.php file, find the following and delete it.
<?php comments_template( ”, true ); ?>
thx
Forum: Themes and Templates
In reply to: Adding my own navbar beneath the header imageHi, assuming you are using latest wordpress version and your theme supports it, there is a theme feature called Navigation menu. It Will appear in Admin -> Appearance -> Menus.
There you can customize your nav bar with custom links, pages or categories as you like.
You can read about it here
Forum: Themes and Templates
In reply to: Help me customize menu on my siteIt is recommended that you consider creating a child theme for your customisations. That said try the following.
In your CSS file change the following
#menu ul{
overflow:hidden;
text-align:center;
}to
#menu ul {
overflow: hidden;
margin-top: -80px;
text-align: right;
}Then change the following
#menu li a{
color:#868F83;
text-decoration:none;
font-size:138.5%;
}to
#menu li a {
color: #868F83;
font-size: 77.5%;
text-decoration: none;
text-transform: uppercase;
}Now the menu on your site will look similar to the other site.
To customize your menu read this.
Forum: Themes and Templates
In reply to: WordPress Bottom Bar image won't tile/repeatHi, in your css file find
#footer {
and then remove
height: 30px;
Let me know if it didnt work. Thx
Forum: Themes and Templates
In reply to: How to swap two menus around?Hi, assuming you are using latest wordpress version and your theme supports it, there is a theme feature called Navigation menu. It Will appear in Admin -> Appearance -> Menus.
There you can customize your nav bar with custom links, pages or categories as you like.
You can read about it here
Forum: Themes and Templates
In reply to: Want Comments on Pages as well as PostsHi, page.php and single.php can be found in your theme folder. In your case it will be themorningafter.
Forum: Themes and Templates
In reply to: Atahualpa – How to change height of menu barCan you please provide link to your site.
Forum: Themes and Templates
In reply to: How to Change Font SettingsMake sure Template name says twentyten in your information header of a child theme.
Here is an example information header of a child theme’s style.css:
/*
Theme Name: Twenty Ten Child
Theme URI: http: //example.com/
Description: Child theme for the Twenty Ten theme
Author: Your name here
Author URI: http: //example.com/about/
Template: twentyten
Version: 0.1.0
*/As with any WordPress theme, the information header must be at the top of the file, the only difference being that in a child theme the Template: line is required, so that WordPress knows which theme is the parent of the child theme.
Forum: Themes and Templates
In reply to: How do I add a link to my sites linkbar?Hi, assuming you are using latest wordpress version and your theme supports it, there is a theme feature called Navigation menu. It Will appear in Admin -> Appearance -> Menus.
There you can customize your nav bar with custom links, pages or categories as you like.
You can read about it here
Forum: Themes and Templates
In reply to: Moving Page Title (K2)Change the following in your css
.four04 .entry-title, body.page #current-content .entry-title {
margin-left: 40px;
text-align: center;
}to
.four04 .entry-title, body.page #current-content .entry-title {
margin-left: 0;
text-align: left;
}Let me know if it didnt work. Thx