ivovic
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Lost admin access to WP blogon the up-side, while you were logged out, your site was definitely more secure, as promised 😉
Forum: Fixing WordPress
In reply to: Perennial question – can’t find answer – paragraph round imagesI guess I better let go of your neck now 😉
Cheers for your post 🙂
Forum: Fixing WordPress
In reply to: Contributors cum Moderatorsthe role manager plugin is a good choice… I’m not sure what easier way you can imagine to do something role-related, but non-standard.
Forum: Fixing WordPress
In reply to: how to edit page slug with 2.51?ohhhh see that’s an excellent question – I guess you can’t have slugs if you can’t have slugs.
I should have thought to ask that, thanks iridiax.
Forum: Fixing WordPress
In reply to: how to edit page slug with 2.51?that’s interesting… I do.
http://img354.imageshack.us/img354/7884/pageslugjp3.jpgis your post saved? – mine doesn’t seem to require that, but I’m asking anyway.
Forum: Themes and Templates
In reply to: What feature(s) would you like to have in a theme?they provide page layout standards, and I imagine image tags would need additional attributes in order to work with re-renderable flexible image sizes.
if this technology is embraced, it would be hobbled without being able to add size information to css background image definitions, for example.
christ, use your imagination.
Forum: Fixing WordPress
In reply to: how to edit page slug with 2.51?try looking right under the page title
Forum: Fixing WordPress
In reply to: Perennial question – can’t find answer – paragraph round images*quietly strangles you*
Forum: Fixing WordPress
In reply to: ?page_id to ?idwell, that’s a good reason, but your better solution is to do 301 redirects in your htaccess file.
ask google about it, there are guides upon guides on how to do this.
I assume your ID numbers are the same right? well, a redirect specified as a regular expression will reuse the incoming IDs, but change the URLs.
Forum: Fixing WordPress
In reply to: Perennial question – can’t find answer – paragraph round imagesI’m sure I can do what you want without that.
try this outside your stylesheet.<div class="post" style="float: left; width: 200px; border: 2px solid blue; padding: 5px;"> <h3 style="text-align: center; margin: 0 0 10px 0;">title goes here</h3> <div class="entry"> <span class="fauximage" style="float: left; width: 60px; border: 1px solid black;">pretend image here</span> <p class="deal-of-the-day" style="margin-left: 70px;">content goes here, the first line of which is your image </div> </div>just put that in a html file on its own, if that’s not what you want, then I just don’t get it.
Note the unstyled p-tags around the faux image. I used a span tag to represent an image because they are both inline styles by default, and behave exactly the same. Replace that with a real image if you think it’ll make a difference.
btw, this is exactly what I said above – just in HTML. The entry div isn’t strictly required for this, but its “standard” for surrounding the_content(); so I’ve included it.
Forum: Fixing WordPress
In reply to: Changing Permalinks Structure Caused Category Problemyou must have a plugin that’s eating it, in some way. usually when it’s blank, it will appear as /category/.
put /category/ in there, or /topic/ or something, but if a plugin is eating it, then it may eat whatever you put in there as well.
Forum: Fixing WordPress
In reply to: Perennial question – can’t find answer – paragraph round imagesoh I see… you’re inserting the floated image after the text.
Try inserting it before the text, and don’t bother floating the text itself.
that should do it.
if you don’t want the text to wrap around the shape of your image, then set your “deal-of-the-day” class NOT to floated, but with a left-margin a bit bigger than the image you’re floating:left.
hope that resolves it for you.
Forum: Fixing WordPress
In reply to: ?page_id to ?idbecause.
Forum: Fixing WordPress
In reply to: Problem order postyeah, there is a bug with certain versions of mysql which results in reversed behaviour when setting the sort order.
Forum: Fixing WordPress
In reply to: Perennial question – can’t find answer – paragraph round imagesexpected behaviour when floating an image out of it’s paragraph is that the paragraph turns into a sliver with almost no height whatsoever. That shouldn’t really affect your layout.
Would you mind terribly, either linking to your site, or providing a screenie so I can get a better grip on what you mean by the ‘text not floating nicely’?