mg12
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Widen right column?That’s easy…
<div class=”widget” style=”margin:0 -15px;”>
… // content
</div>Forum: Fixing WordPress
In reply to: Increasing the size of avatars1. Open functions.php and find
get_avatar($comment, 32);
2. Change 32 to the size (pixels) you want.Forum: Themes and Templates
In reply to: Add author display to the template, pleaseVery good suggest, I’ll add this feature to the next version.
Thank you!Forum: Themes and Templates
In reply to: Inove and WordPress 2.7The new version released today, and this bug got fixed.
Forum: Themes and Templates
In reply to: Inove and WordPress 2.7Thank you very much! That’s a weird problem, but iNove will be updated soon.
Forum: Fixing WordPress
In reply to: iNove Left sidebar.. Need help!Aha, I can give you some tips.
style.css:
1. #main{float:right}
2. #sidebar{float:left}
3. #content{background-repeat:left}img/sidesep.gif
Rotate this image for 180 degrees.Forum: Fixing WordPress
In reply to: Problem with comments.phpOK, follow there 2 simple steps and fix it yourself please.
Step 1:
$login_link = site_url('wp-login.php', 'login');
CHANGE TO
$login_link = get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink());Step 2:
$logout_link = site_url('wp-login.php?action=logout', 'login');
CHANGE TO
$logout_link = get_option('siteurl') . '/wp-login.php?action=logout';Forum: Themes and Templates
In reply to: iNove WP 2.7 comments?The new version is coming soon and COMMENT PAGES feature will be supported.
Forum: Fixing WordPress
In reply to: StatisticsI am sorry, that’s a bug.
Add<?php wp_footer(); ?>to footer.php please. (before</body>)Forum: Plugins
In reply to: Background display problems in SafariEverything is OK in Windows Safari, I think there are some difference.
However, you can fix yourself:
1. Resave img/light.png as a JPG file (img/light.jpg).
2. Edit style.css and replaceurl(img/light.png)tourl(img/light.jpg).Forum: Themes and Templates
In reply to: Blog Name?There are simple steps to replace your title with an image.
1. You can find a file named title.psd in title_psd directory. Open your Photoshop and edit it as your headline image.
2. Open style.css file, find ‘image blog title‘.— FORM —
#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;
}Forum: Themes and Templates
In reply to: Removing sidebar items in iNove templateHi, esserd.
There are 4 sidebars.
North sidebar: Recent Posts, WP-RecentComments, Tag Cloud
South sidebar: Meta
West sidebar: Archives
East sidebar: CategoriesFor example, if you want to remove Categories widget:
1. Goto Theme Widgets page.
2. Select east_sidebar as Current Widgets.
3. Remove widget and save change.Forum: Plugins
In reply to: [Plugin: WP-RecentComments] spendidHi, Pense Libre. Do you mean separate trackbacks and comments?