comprepairgurus
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to change the thumbnail crop position?I’m actually trying to figure this out myself. But if you need to change the crop position in Nextgen, I wrote a fix for it here. “CompRepairGurus Nextgen Crop Position Fix” I imagine WordPress uses a similar method. If I come up with anything I’ll update this post.
Hope this helps someone… ??
Forum: Installing WordPress
In reply to: moved within site, getting errorsHad a similar issue. Didn’t move the files, but I did copy, re-copy a few times. I had also setup nggalley in my theme directory, https://nextgen.boelinger.com/templates/ . My error was as follows:
Warning: Cannot modify header information – headers already sent by (output started at /home/me/public_html/myrealtysite/wp-content/plugins/nextgen-gallery/widgets/widgets.php:989) in /home/me/public_html/myrealtysite/wp-includes/pluggable.php on line 865
Replaced widgets.php. The error changed, I now get an error from a file in the nextgen-gallery/admin/ I just said “screw it” and replaced the whole nextgen-gallery/admin folder with a fresh copy. Now I’m getting errors from nextgen-gallery/admin/manage-images.php . I opened manage-images.php and found that the error location was actually the blank space at the end the file. I deleted the blank lines, uploaded, and all was well.
Weird, but it worked.
Forum: Fixing WordPress
In reply to: Specify a class for IMG inserted with visual editorWhen you say “Visual Editor”, are you saying you don’t have the ability to choose HTML view in your posts? If so thats a whole nother problem. But if you do have HTML view, read on.
This is actually pretty simple. All you need to do is style your images using your style sheet. Here’s how…
If you don’t have an img class setup in your style sheet, you should first add something like…
.entrybody img{
margin:0;
padding:0;
border:none;
}Note, The div class on my posts is entrybody, yours may be different. Also this will style every image, in all your posts.
Next to style your images differently, ie. float left, float right, etc. You’ll want to use a class selector, as follows….
.entrybody img.leftfloat{
margin:0 10px;
padding:0;
border:none;
float:left;
}Now to call to this class selector in your post, your img tag will look something like this.
<img src=”https://www.yoursite.com/wp-content/uploads/2009/08/myprettyimage-150×150.png” alt=”MyPrettyImage” title=”MyPrettyImage” width=”150″ height=”150″ class=”leftfloat” />
I realize the original poster asked for this almost a year ago, but I’m sure it will still prove helpful to someone. Good luck.