Explorz
Forum Replies Created
-
Forum: Plugins
In reply to: [Spam Free WordPress] [Plugin: Spam Free WordPress] HTML getting throughurl addresses are still getting through.
Forum: Plugins
In reply to: [Spam Free WordPress] [Plugin: Spam Free WordPress] HTML getting throughHey Todd, Was this resolved? I’m not clear on the resolution.
Forum: Fixing WordPress
In reply to: Twenty Eleven – How to Center Navigiation Menu?With the update to the twenty eleven theme, I find that my menu now is only centered if I choose the option to Display the Header Text. When I turn off that option, my menu shifts to the left and is no longer centered. Any ideas?
I find this plugin very unreliable.
When I change the appearance of a widget in my sidebar and then check the page, the edit shows up. I then log out of the admin page and recheck the homepage and find that the edit no longer shows up.
If I log back in, the edit shows up properly. log out and the page reverts to what it looked like before the edit.
I can only assume then, that the edit will not show up properly on the public page. Because the edit only shows up properly when I am logged in to the admin page.
This is frustrating and I find that I can’t trust how my edits will show up to the public.
Too bad, because I really want a workable cache solution.
Forum: Fixing WordPress
In reply to: How do I put an RSS feed and RSS subscription on my blog?I’ve got a pretty good handle on the wrodpress world, BUT……
The rss thing really confuses me.
I would like to have a link in my sidebar so that when a person clicks on it, they can easily subscribe to my blog via rss.
How do I do that. I know that’s soooooo basic, but it eludes me.
Thanks
Forum: Plugins
In reply to: [Spam Free WordPress] [Plugin: Spam Free WordPress] See Blocked CommentsAny way to ensure that good comments aren’t getting blocked?
Forum: Themes and Templates
In reply to: png images aren't transparentOK, well, can I at least get it so that when the cursor moves over the image that it doesn’t show a grayish white background color?
Forum: Themes and Templates
In reply to: png images aren't transparentI use png images all the time in my other web sites. But I use photoshop to add the shadow to the image.
I guess here in WP I am trying to make it easy and have the css code set to apply a shadow to all images. I guess that’s where I’m getting into trouble.
It just makes it so much easier to not have to add shadows by hand to every image I want to use.
Saradiop,
I wish that would do it, but it doesn’t have any impact.
Hi,
This was tremendously helpful! Thank you.
I would like to also change the border color of the search box. Possible?
As well, the search widget in my sidebar doesn’t function at all like the search bar in the header. Any ideas perhaps why not?
https://truenorthalliance.com/blog/
Thanks
Forum: Fixing WordPress
In reply to: Twenty Eleven – How to Center Navigiation Menu?I found an answer.
Add this code to #access
line-height: 0em;
Forum: Fixing WordPress
In reply to: Twenty Eleven – How to Center Navigiation Menu?Has anyone found an answer to the thicker nav bar not accommodating the hover block?
Thanks
Forum: Themes and Templates
In reply to: Child theme not referencing images from parentI realized that I needed to change the url of the referenced images to:
(../twentyeleven/images/comment-arrow-bypostauthor.png)
Adding the ../ made the difference.
Thanks
Forum: Themes and Templates
In reply to: Image Drop ShadowsGot it.
Here’s the code for anyone else who is looking for it. This applies to the Twenty Eleven theme.
#content .gallery .gallery-icon img {/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
border: 1px solid #000;
padding: 0px;
-moz-box-shadow: 3px 3px 8px #2e2e2e;
-webkit-box-shadow: 3px 3px 8px #2e2e2e;
box-shadow: 3px 3px 8px #2e2e2e;
}Forum: Themes and Templates
In reply to: Image Drop ShadowsI modified the code in my child theme to:
#content .gallery .gallery-icon img {/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
.shadow {
-moz-box-shadow: 3px 3px 4px #000;
-webkit-box-shadow: 3px 3px 4px #000;
box-shadow: 3px 3px 4px #000;Not making any difference in the submitted images. I think this is the right place, because that is where I put the code before for adding a thing border to all pics in posts.