yinw
Forum Replies Created
-
Forum: Plugins
In reply to: Fold Page List plugin gets new custom class for ‘folders’My fault. It does work. I just forgot to change to sort_column=menu_order (I moved to a new theme)…
Forum: Plugins
In reply to: Fold Page List plugin gets new custom class for ‘folders’Hi Rob,
It works great but seems to ignore the sort_column=ID for the children.
see: https://www.photoxels.com/photobook/
Open up Camera Fundamentals: Understanding The Specifications has a Page Order = 0, Digital SLR has Page Order = 1, but Digital SLR is displaying at the top.
Am I missing a parameter? I tried depth=2…
Thanks for any help…
Forum: Installing WordPress
In reply to: Where do I find the plugins folder in FTP?Don’t forget that theme goes into theme folder and plugins go into plugins folder…
No html to edit — only the .php in your particular theme. The .php will read the actual content from your database and create a .html that is then displayed.
Forum: Fixing WordPress
In reply to: Problem with images and cssForgot to add:
Then in your IMG tag, add class=”imgleft” to any picture you want displayed aligned left with 5 pixels spaces to the right, with text flowing to the right of it.
Yin
Forum: Fixing WordPress
In reply to: Problem with images and cssAdd an entry to styles.css :
.imgleft { float: left; padding-right: 5px}
This will float your image to the left and add a 5 pixels space on the right side.
As far as the footer is concerned, just add a couple of empty lines.
Yin
Forum: Fixing WordPress
In reply to: Pages not displayingThanks HandySolo,
I did not notice the need for an .htaccess file in my previous WordPress installations, so did not create one for this install.
For others who might encounter the same problem:
– create a text file .htaccess and FTP it to your WP directory
e.g. https://www.example.com/wp-directory/.htaccess
– you might have to create it first as “1.txt”, FTP it, then rename it to “.htaccess” (without the quotes)
– when you create your post & page using permalinks, WP creates the following entry in .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp-directory/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp-directory/index.php [L]
</IfModule># END WordPress
– that’s it!
Thanks again!