lilylpod
Forum Replies Created
-
Forum: Plugins
In reply to: Plugin path is not recognized.Well, I appreciate your help. All of you. And I know you do this for free, but is the “read the instructions again” really helpful? What I did do was look through the lazy-gallery.php and found that I needed to name the gallery folder wp-gallery and not simply gallery. With that change, I was able to solve my problem. Thanks.
Forum: Plugins
In reply to: Plugin path is not recognized.I have done the things suggested in the prior two posts before posting. I created a folder called lazy-gallery (actually, I just copied the contents of the unzipped file into the plugins folder via SmartFTP)
path: lilylpod.com/wordpress/wp-content/plugins/lazy-gallery.
The plugin is recognized in the Plugins Section of the wordpress Dashboard/Admin panel. I did press “activate”It was after these steps that I tried to access the lazy-index.php file which I had moved from the lazy-gallery folder to the wordpress folder. Its path is now at lilylpod.com/wordpress/lazy-index.php.
I did change
<link href=”./wp-content/plugins/lazy-gallery/lazy-style.css” rel=”stylesheet” type=”text/css”>to
<link href=”./wordpress/wp-content/plugins/lazy-gallery/lazy-style.css” rel=”stylesheet” type=”text/css”>
after I had received the first error message but that didn’t solve the problem. To sum up, I do have the folders that the error message says doesn’t exist.
Forum: Fixing WordPress
In reply to: Firefox rendering issueIs it okay to post my own similar rendering problem here? I tried the previous suggestion:
<style type=”text/css” media=”screen”>
@import url( <?php bloginfo(‘stylesheet_url’); ?> );
</style>With:
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />But my photos on the blog still do not appear correctly. I am using this bit of code to get the text to flow around the picture. Perhaps that is the culprit:
.img-shadow {
clear: both;
float:left;
background: url(images/shadowAlpha.png) no-repeat bottom right !important;
background: url(images/shadow.gif) no-repeat bottom right;
margin: 20px 0 0 17px !important;
margin: 20px 0 0 8px;
}.img-shadow img {
display: block;
position: relative;
background-color: #fff;
border: 1px solid #a9a9a9;
margin: -6px 6px 6px -6px;
padding: 4px;
}