mg12
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove the little popups that shows when hovering the menu bar?Hey MicDK, I will add an option to control the Feed box, then you can disable it in ‘Current Theme Options’ page.
Forum: Installing WordPress
In reply to: Make Inove wider?Forum: Themes and Templates
In reply to: Help with iNove sidebar widgetsfigaro is right.
Forum: Themes and Templates
In reply to: Page >> Title – Heading | SeparatorsFind
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>in templates/start.php file.
Change it to<title><?php wp_title(' | '); bloginfo('name'); ?></title>and you can change ‘ | ‘ to another string to separator.Forum: Fixing WordPress
In reply to: Sidebar 2. How can I call this?<?php get_sidebar(); ?>Forum: Plugins
In reply to: [Plugin: WP-RecentComments] Widget Title links to a post?Okay… π
Forum: Plugins
In reply to: [Plugin: WP-RecentComments] Error on Widget displayHi rschilt
Thanks for your report. this bug will got fixed today.Forum: Themes and Templates
In reply to: inove theme comment numbering pagesDo you mean the comment numbers? like #1, #2, #3, …
That is not a bug, but I can show you how to change.Search the following lines in functions.php:
$commentcount = 0;
And change the codes to:
if (get_option(‘page_comments’)) {
// get current comment page ID
$r = wp_parse_args( $args, $defaults );
$page = $r[‘page’];
if ( !$page ) {
$page = 1;
}
$commentcount = get_option(‘comments_per_page’) * ($page – 1);
} else {
$commentcount = 0;
}Forum: Themes and Templates
In reply to: Inove – left sidebar smaller?mogmedia is right!
But I think you also need to change two image files:
1. header_footer.jpg
2. sidesep.gifForum: Themes and Templates
In reply to: Underscore in header – how to removeThanks mercime.
Forum: Themes and Templates
In reply to: inove drop down nav boxes too small for FirefoxHi, my friend. you can change the width of menus to fix the problem.
1. Find ‘#menus li li a {‘ in style.
2. Change ‘width’ attribute for 125p to 250px.Hi, justinfm101
Thanks for your report.
The bug have fixed in the new versions.Forum: Fixing WordPress
In reply to: Add Author To PostsThis feature will be added to the next version, and the new version is coming soon. π
Forum: Themes and Templates
In reply to: Remove sidebar in iNove ThemeHi, everybody.
The feature will be added to the next version, then you can create a page without sidebar via a new template.
The new version is coming soon…Forum: Themes and Templates
In reply to: Logo Integration into inove Theme headerHey, man
Please open your style.css, find#title a {, and change#title a {
text-decoration:none;
color:#FFF;
/*width:250px;*/
height:30px;
display:block;
font-family:”Trajan Pro”;
letter-spacing:0;
}
/* image blog title */
/*
#title a {
background:url(img/title.gif) no-repeat;
text-decoration:none;
color:#FFF;
width:250px;
height:30px;
text-indent:-999em;
display:block;
}
*/
to
/*
#title a {text-decoration:none;
color:#FFF;
/*width:250px;*/
height:30px;
display:block;
font-family:”Trajan Pro”;
letter-spacing:0;
}
*/
/* image blog title */#title a {
background:url(img/title.gif) no-repeat;
text-decoration:none;
color:#FFF;
width:250px;
height:30px;
text-indent:-999em;
display:block;
}