iammk
Forum Replies Created
-
I am having the same issue. When I add a second instance of that fieldset, the info formats properly but when only one instance is used, it appears as described in the original post here.
Forum: Themes and Templates
In reply to: [Dara] Removing space from header + site title issuesThat did it, thank you!!
Forum: Themes and Templates
In reply to: [Dara] Removing space from header + site title issuesRight. Basically, I want the header to look like this.
.page didn’t seem to do it either.
Forum: Themes and Templates
In reply to: [Dara] Removing space from header + site title issuesThanks for your fast response! I pasted both of those into the Additional CSS box but I’m not seeing results for either. Did I do something wrong?
Forum: Themes and Templates
In reply to: [Dara] Grid Page works everywhere except home pageI don’t want to use them both at the same time. I want the main page to have the narrower text formatting that the grid page displays on all the other pages.
Forum: Fixing WordPress
In reply to: Monthly archives don’t work after change of permalinks?Thanks for posting the solution…I had the same problem and had done the same thing!
Forum: Everything else WordPress
In reply to: Hosting a wordpress photo blogI’ve been very happy with Verve Hosting for many years.
Forum: Plugins
In reply to: Auto-insert file upload/attachmentHaving done further investigation, what I’m looking for is something like Gordon Knoppe’s attachfiles plugin which, unfortunately, doesn’t seem to work in 2.0 and he appears to have disappeared. Anyone know of anything similar? (In short, it provides a browse box and simply adds an attachment link at the bottom of a post with a little paper clip icon next to it.)
Barring that, the filosofo old-style upload plugin may suffice for now but I don’t know how to add it to the tinymce (or Editor Monkey) group of icons that display above the post. Any help there?
Forum: Plugins
In reply to: Auto-insert file upload/attachmentPhooey. We’re using WordPress in a work situation and it seems like lots of people are having problems completing the “send to editor” step. We were hoping to make it work a little more like Lotus Notes (eww) where, when you select an attachment, it just inserts the icon/link wherever your cursor was. Perhaps we ought to create a better tutorial then…thanks.
Forum: Fixing WordPress
In reply to: Using transparent pngs in templateThat was actually one I’d already tried. All I can get with that is the broken image box.
I put the .js code right above the </ head> tag in header.php and I put the img src right inside the titlebox, like this
<div id="headerblock"><img src="atlasinfospace.png" width="279" height="34" alt="a PNG logo" />
I unfortunately don’t have pages to demonstrate because this is on our intranet.
Forum: Plugins
In reply to: user levels and equality issues: plugin or hack?I made this change and it works fine – users on levels 5 and above can edit posts made by other users on their own level. What I’m wondering is if there is a way to make it so that they can edit in this manner just for the Pages and not for the posts?
Forum: Plugins
In reply to: modifying cat2tag plugin to appear openHere’s the answer in case anyone else needs it.
Line 116:
echo ‘<div id=”allTags” style=”display: none”><h3>All Tags</h3>’;
Change that to:
echo ‘<div id=”allTags”><h3>All Tags</h3>’;
(removing the css display none portion)
Forum: Fixing WordPress
In reply to: Other’s Drafts – Turn OffWas there ever a solution for this? I’d like to remove “other’s drafts” visibility as well.
Forum: Plugins
In reply to: Order of plugin appearance on post.phpFor future reference, I changed this line in the cat2tag plugin:
add_action(‘edit_form_advanced’, ‘c2t_add_tags_input’);
to
add_action(‘edit_form_advanced’, ‘c2t_add_tags_input’, ‘0’);
and that did the trick.