Brigitte
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Picture not getting aligned to centerFor images I either use p class=”center” using text-align: center; in the css or… that really old <center> tag.
Forum: Themes and Templates
In reply to: Some CSS help for a theme..An easier way to make a two columned layout would be using this tutorial:
https://inobscuro.com/tutorials/read/25/Forum: Fixing WordPress
In reply to: how to show my post in FULL feed view?I’m using Feedburner and when I look at my feeds through my reader I get the […] thing. In the options it says Full Text. What else might be the problem?
Forum: Fixing WordPress
In reply to: Max file size how to controlPasting what that support topic says gives my site and all the subsites on it a 500 internal error. Why is it doing that and how can I fix it?
Forum: Fixing WordPress
In reply to: Blog and Yapb Photolog on same domainOkay, sorry to keep posting, but it’s still not resolved.
If I go to say https://heart-strutter.org/365/wp-admin/post-new.php it automatically takes me to heart-strutter.org. How can I fix this?Forum: Fixing WordPress
In reply to: Blog and Yapb Photolog on same domainOkay, here’s the .htaccess for Heart-strutter.org:
<IfModule mod_rewrite.c> RewriteEngine On # If subdomain www exists, remove it first RewriteCond %{HTTP_HOST} ^www\.([^\.]+\.[^\.]+)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L] # If requested resource does not exist as a file RewriteCond %{REQUEST_FILENAME} !-f # and does not end with a period followed by a filetype RewriteCond %{REQUEST_URI} !..+$ # and does not end with a slash RewriteCond %{REQUEST_URI} !/$ # then add a trailing slash and redirect RewriteRule (.*) $1/ [R=301,L] </IfModule> # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
After changing the .htacces of /365 to this:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /365/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /365/index.php [L] </IfModule> # END WordPress
then the pages started working…
However, can someone tell me is there’s anything I should change to these .htaccess files?Forum: Fixing WordPress
In reply to: Rich Text Editor Options Mac/PC Different?Thanks so much!! :]
Forum: Fixing WordPress
In reply to: Floating part time with images, and textWhen you want text under an image give the image a new class, such as clear. In the css make a
.clear { clear: both;}
And then you should use
<img src="" class="clear" />
Not sure, but might this force the text to go below the image? I would have to try it on a layout to see, but try it.
Forum: Plugins
In reply to: Live Press with WP 2.1While it posts OK, how do you make it so that L+P options show up on New Post? That’s pretty much my problem. =/
Forum: Fixing WordPress
In reply to: How to count users?Hm, upon extraction the coding gets messed up so I had to paste it from WinRAR to notepad to get the lines right. ?? Otherwise it works fine.
Forum: Fixing WordPress
In reply to: How to count users?Ah, nevermind. I found a plugin: https://www.kineda.com/?p=394
Forum: Plugins
In reply to: Plug CommentersHahahaha, oh wow. I haven’t eaten yet and it’s 3pm so I must be brain-dead. Thanks for the links.
Forum: Fixing WordPress
In reply to: thumbnail sizeI just installed the plugin post_image and I realized that yes, indeed, the thumbnails are way too small. Is there any way to make an option on what size the thumbnail should be sized? It would be ever-so helpful to have this feature added.
Forum: Installing WordPress
In reply to: Warnings and errors on log inNevermind. :] I just imported all the database tables again. *shrugs*
Forum: Fixing WordPress
In reply to: Making Selected Pages HighlightedOOOOH. Hahah, it just took me a little time to figure it out. Thanks very much moshu! I did it without the whole Blix code. I just changed the class style in my css to current_page_item and whatnot. Thanks!!