navid
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: WordPress.comSphyr, I believe the original poster is referring to what is actually written at http://www.wordpress.com/
Forum: Fixing WordPress
In reply to: header picture keeps going down the pageI’d love to help you out but I even checked out your page in IE and Firefox and it looks great. Did you fix the problem by avoiding the formatting or do you have a direct link where we can actually see this problem? Good luck.
Forum: Themes and Templates
In reply to: Styling ImagesYou can easily style images inside your posts using CSS. For example, for you, it woud look something like this:
.article img {
border: 0;
margin: 0.3em 0.2em 0.3em 0.1em;
}
And then, another good idea would be to add a some positioning..
.left {
text-align: left;
}
.right {
text-align: right;
}
That way, you can include images:
<img src="..." class="right" />
And the text will flow all around it. For an example, check out my about site: http://www.navidazimi.com/about/
Good luck.Forum: Themes and Templates
In reply to: IE is not cooperatingYour entire sidebar falls down when browsing in IE. This is a pretty common problem… I ran into myself. I suggest you redo your layout using a much better two-column core design. Maybe something like http://www.456bereastreet.com/lab/developing_with_web_standards/csslayout/2-col/?
For me, even that wasn’t enough because on some instances, my sidebar would be longer than the content and that would end up screwing things up even more. I recall finding another two-column layout that circumvented that issue as well — though this easy to follow tutorial may solve what you’re looking for.Forum: Fixing WordPress
In reply to: Errors just popped upDoes this happen to every page? some pages? only some pages? all the time? once in a while? You say randomly.. and I think that will throw some people off.
Forum: Fixing WordPress
In reply to: Editing DB InfoI’m not sure, but I think the easiest thing for you to do is to install WordPress entirely from scratch on your new host and then simply importing the data from your previous configuration over using phpMyAdmin.
This may not work, or their may be a better way… but I think that’s how I would generally approach it.
Good luck.Forum: Fixing WordPress
In reply to: Feature request..Do you want to be able to specify several categories or will just specifying one category at a time be sufficient? If no one has a good answer, I’ll simply whip up a select-box which allows you to filter between different categories (and ideally, also be able to search through them).
Forum: Fixing WordPress
In reply to: 1.s.5a admin header?This happened to me too the first time I upgraded to WP 1.3 — I just left it alone and starting my regular blogging and admining — and it just suddenly started to work. The thing is, the page was really messed up with the background staying white, etc. Just play around in there until some older database stuff gets set right.
Forum: Fixing WordPress
In reply to: Download system…This actually shouldn’t be too hard to implement through a plugin. If you have no idea on how to go or there are no good answers, let me know and I’ll see what I can come up with.
Forum: Plugins
In reply to: Success with a Gallery in WordPress?I’ve been using Gallery v1.4.4 and WordPress 1.3 for some time now and I’ve had zero problems. The only modifications I’ve had to make was two files…. to include my website header and footer, thats it.
Forum: Fixing WordPress
In reply to: stop using “category” in category permalinksThe problem with not using dates with permalinks is that you often times create duplicate titles (or post-slugs) for sometimes very different posts.
If you are using dates (down to the day-level), this will generally never happen. Moreover, if you are looking to create a static-looking post, you should use “pages” which are new in WordPress 1.3.