ryanarrowsmith
Forum Replies Created
-
Forum: Plugins
In reply to: WP-o-Matic and Duplicate PostsI’m having the same issue. It’s like, if I don’t post something for a few days, it pulls the most recent posts over and over again. I had 20 duplicate posts from one original entry!
Help!
Forum: Fixing WordPress
In reply to: Posts sorted by dateThanks Moshu! I really appreciate the tip! ??
Forum: Plugins
In reply to: Help me remove this plugin, please.All you need to do it FTP in and delete it from the plugin folder/ wp-content/plugins/
Forum: Themes and Templates
In reply to: Complex Page Layout (or not)First off, I’d create a home.php and drop it in your directory. This will give you a specialized homepage without disrupting the rest of the site. Then, I’d use custom queries instead of the traditional loop for each sections…something like this:
<?php $my_query = new WP_Query(‘cat=1’);
while ($my_query->have_posts()) : $my_query->the_post();?>// Your Loop Here
<?php endwhile; ?>
Forum: Themes and Templates
In reply to: Which place in css can effect footer?#footer {
background-color: #ffffff;
}The problem is that your font color is white on a white background. Try changing your color.
Forum: Themes and Templates
In reply to: Adding image to footerJeanne -remove this bit of code: position:absolute; top: 525px;
That’s telling the browser how to position it.
Forum: Installing WordPress
In reply to: someone please helpTry FTPing in and deleting the plugin. That should fix the problem. Not sure which Plugin you’re using, but sometimes they freak out.
Forum: Themes and Templates
In reply to: bottom-border issuesI told you wrong. It should have been:
.feedback {
border-bottom: 1px solid #C2C2C2;
clear: both;
margin: 10px 0px;
}The other way would have put the line above your # of comments line. Sorry!
Forum: Themes and Templates
In reply to: bottom-border issuesTry something like this (or similar):
.meta {
border-bottom: 1px solid #C2C2C2;
clear: both;
margin: 10px 0px;
}If that stills displays above the post, then there’s something wrong in the XHTML/PHP.
Forum: Fixing WordPress
In reply to: changing size of editorThat’s pretty easy to do. If you’re looking at the text area, in the lower right corner there’s a triangle made up of three lines. If you’re using a modern browser (Firefox, Safari, Camino, etc), you should be able to click on that triangle and drag the editor into the size you want.
Forum: Fixing WordPress
In reply to: someone please help me with my disobedient sidebarActually, it doesn’t have anything to do with the sideblock. The content in your sidebar is being listed in an unordered list (the “ul” class in CSS). If you leave ul and ol unstyled, they indent by default.
You need to update the CSS as follows:
#sidebar ul
{
list-style:none;
margin: 0px;
}#sidebar li
{
padding:0px;
margin: 0px;
}#sidebar ul ul
{
list-style:none;
margin: 0px;
}#sidebar ul ul li
{
margin: 0px;
padding:0px 0px 3px 10px;
}#sidebar ul ul ul
{
list-style:none;
border:0px;
margin:0px;
padding:0px;
}#sidebar ul ul ul li
{
border: 0px;
padding:0px 3px 0px 5px;
}Try bbpress (https://bbpress.org/). Made by the fine folks at WordPress. ?? You’re currently using it here.
Forum: Your WordPress
In reply to: Reboot – Feedback Please!!!Looks good.
Forum: Fixing WordPress
In reply to: add padding to images in editoryou could hack the stylesheet for the admin area manually to style the images, but I don’t know of a plugin that will do it for you.
Forum: Fixing WordPress
In reply to: Sidebar-stuff out of wordpress.If the other site is HMTL based and not PHP, I don’t think so unless you want to hand code everything. You’ll need a dynamic language like PHP to read a RSS feed or import content.