ifelse
Forum Replies Created
-
Forum: Your WordPress
In reply to: IfElse redesigned: Black GoldThanks Vkaryl:)
Forum: Your WordPress
In reply to: IfElse redesigned: Black GoldDidn’t expect to see this post bumped up again; it’s been a while:)
“Is it possible to download this theme?”
Sorry, unfortunately this theme is for personal use only.Forum: Fixing WordPress
In reply to: Confusion about Trackbacks in 1.5“what ya mean “Actual readers which are launched”? RSSReader for Windows is a Reader. Bloglines is a Reader. Clarify”
Nearly all the major desktop aggregator apps register themselves correctly. On my machines, Feeddemon registers itself to handle the feed protocol; Safari handles feed links in it’s RSS reader.
Forum: Fixing WordPress
In reply to: Sorting by post ID – New on topChange
ORDER BY ID $limitstoORDER BY ID $limits desc.Forum: Themes and Templates
In reply to: Sidebar, Footer and Main Content MisalignmentTake a look at the CSS faux column technique
Forum: Your WordPress
In reply to: Blog Redesign“I’m sorry for bumping but a lot of questions go unanswered in this forum.”
And by bumping, you knock off other people’s post for the sake of your own which hurts their queries. If everyone bumps without regards to others, everybody loses.
The css for handling the padding of the sidebar is contained within #sidebar e.g. you can change it as thus:
#sidebar {
padding: 0 57px 30px 0px;
}Try playing around with that until you find something to your likeing and in future, try to be more considerate.
Forum: Fixing WordPress
In reply to: WP won’t let me delete“It still doesn’t work :(“
Which steps did you try (There are quite a few)?
What browser/OS are you using?
What firewall programs do you have installed?We’ll need more information from you before we’re able to help.
Forum: Requests and Feedback
In reply to: need help ASAP“Hey Admin, Please Patch Ur Server. [x] *** Using : FreeBSD cgi1 4.10-RELEASE FreeBSD 4.10-RELEASE #0”
The above message suggests it is a server vulnerability and not WP; you’ll need to get in contact with your webhost and ask them to investigate further.
Forum: Fixing WordPress
In reply to: [Got error 28 from table handler] problems again!You’re in the UK I see. Any recommendations for a different webhost?
I’ve found that there’s no need to look for a specific UK host. Many of the US based hosts offer better service, prices and features.
I personally use (the very popular) Dreamhost and have been happy with the service and prices.
Other providers which are well considered include ASmallOrange and TextDrive (who host wordpress.org as well as many other major sites).
Forum: Fixing WordPress
In reply to: [Got error 28 from table handler] problems again!MySQL themselves have detailed information on the bug and how to resolve it. It’s not a WP issue.
It is a filesystem issue. Whilst, they may have free space on the server, they need to check the filesystem in which MySQL uses.
Out of interest, who are your webhosts?
Forum: Everything else WordPress
In reply to: Any WP blog clients?Hmmmm….
Forum: Fixing WordPress
In reply to: Multiple Loops Problem – Two seperate categories on one pageTry something like the following (Be sure to substitute the category_id’s for the one’s that you’re using):
query_posts('cat=3');
if (have_posts()) :
while (have_posts()) : the_post();
the_title();
endwhile;
endif;
//now run a new query
query_posts('cat=5');
//as $wp_query is reinitialised, let's run the_loop
if (have_posts()) :
while (have_posts()) : the_post();
the_title();
endwhile;
endif;This is a minor modification of the technique described in this article.
Forum: Your WordPress
In reply to: My second wordpressDidn’t realise that you were behind Applemad. Anyways, very nice indeed!
Forum: Themes and Templates
In reply to: How was this mod of TriSexuality done?“
Other platform providers have ‘presales’ forums for questions like mine.
This is a well-done, and professional application. Too bad the ‘support team'(if, in fact, you’re on the support team) is impatient and rude.”
Like RustIndy said, this is a volunteer forum. We’re all keen users of WP and devote our time and knowledge freely as a means to help the community.
WP is an open-source product (hence the concept of a presales forum is incongruous. The best way to answer your questions and get a feel for the product is to download it and try it. Have a play around with it. It’s free (both as in beer and speech).
With regards to the issue posed in this thread, the problem, strictly speaking, is not WP related but a CSS/HTML issue i.e. general web development stuff.
Forum: Installing WordPress
In reply to: WordPress main page doesn’t look rightSorry Moshu, beat you to it:)