Michael Bishop
Forum Replies Created
-
Forum: Plugins
In reply to: Issues with the Adhesive “sticky post” pluginSupport from Owen is doubtful, he lost most of his site earlier in the year, and I don’t think he’s established his support forums again.
Forum: Themes and Templates
In reply to: Theme Options randomly reverts to defaultAnd for the third time drawab, as joni stated, it’s not a matter of disabling the plugin, it’s a matter of reading the directions and installing the mobile theme in your theme directory rather than leaving it in the plugin folder.
Forum: Fixing WordPress
In reply to: Keeps resetting themeAs I said in the other thread this was posted in, you don’t need to disable it, simply install it correctly. If you don’t put the wp-mobile theme in the theme directory, and leave it in your plugins folder, when ever someone visits the site via a mobile device, and your site can’t find the correct theme, then it causes an error, reseting the theme.
Forum: Themes and Templates
In reply to: WordPress 2.0.5 constantly wanting to revert to “default” themeDon’t disable the plugin, properly install it. You have to put the wp-mobile theme in the themes directory, not leave it in the plugin folder. I did the same thing. Guilty of not reading the direction…again.
Forum: Fixing WordPress
In reply to: How Do I Get A Second Sidebar On The Left of My Site?That’s not a simple request. If you do not know anything about CSS based design, you are far better off starting with a new theme that has 3 columns, and start learning about how it’s constructed.
A good starting point Blog_Design_and_Layout
For themes, http://themes.wordpress.net
Forum: Fixing WordPress
In reply to: podPress 7 problem broken RSS2Have you contacted the plugin author? He’s very active in its development, and may have a support forum as well.
Forum: Installing WordPress
In reply to: Starting Word PressAside from changing 3 lines in the config.php file, the installation is a basic “go” button. (upload files via FTP), navigate in your web browser to /wp-admin/install.php, and the rest is done for you.
If you are not inclined to install this your self, or use fantastico type installation, you can always go wordpress.com and get a blog there.
Also, the online documentation is very thorough
Getting_Started_with_WordPress#Installation
And the support forums are always here for helping through a few steps.
Finally, I believe this service is still active
Forum: Fixing WordPress
In reply to: Upgrade to 2.0.5 Sorry No Posts MatchedJust a note, perhaps there’s not a solution simply found, but there is an Adhesive version for 2.x…if it’s not easily found it’s because Owen’s server crashed and ALL data was all but lost.
Glad it was sorted out.
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function: get_header()And my folks, answer – response, is the reason WP was named the best blogging platform.
http://technology.guardian.co.uk/weekly/story/0,,1975939,00.html
Forum: Fixing WordPress
In reply to: move posts from bloggerWordPress? You mean a wordpress.com blog? That has nothing to do with a blogger account or gmail for that matter. (outside of the fact you may have registered using a gmail address)
Support issues for wordpress.com blogs are at http://wordpress.com/forums/
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function: get_header()What if you change to the default theme? DId you install any plugins recently as well?
I can navigate to your admin page, so WP is working to some degree.
Forum: Fixing WordPress
In reply to: Image Wrap?Your CSS needs help. I could only find one example of an image with text, the one that’s in the first screen shot. Your CSS for images in posts automatically floats it left, however you’ve added the class=”right” to the image, which does nothing, as it appears you’ve drop that from the style sheet.
A quick CSS primer, when using padding and margins, you can define top, right, bottom, left margins in one declaration (in that order).
So your CSS is floating the image to the left, but giving the right margin 0. Change that to margin: 0 5px 1px 3px and you should have a 5px gap between the images and the text.
A better approach would be delete that .post img and create two classes, .left and .right.
If it was me, I’d do
.left {
float: left;
border:1.5px solid <?php echo $water_maincolor_1; ?>;
padding: 2px;
margin: 0 5px 0 5px;
}and
.right {
float: right;
border:1.5px solid <?php echo $water_maincolor_1; ?>;
padding: 2px;
margin: 0 5px 0 5px;
}Then add the class the img tag (
<img class="left" src="http://example.com/image.jpg" alt="image" />). That way, if you want the image to the right of the text, it will float over, and give some space, likewise to the left.I added 2px of padding between the border and image, but that’s a personal preference.
Obviously the space can be adjusted to your liking.
Forum: Fixing WordPress
In reply to: Images in IE not ShowingHmm. It appears Andreas himself coded 01 1.5 for WP, so nix my suggestion…
Forum: Fixing WordPress
In reply to: Images in IE not ShowingYou may want to visit andreas site to see if he’s upgraded the original OSD, it’s possible the author who ported it hasn’t upgraded. Just a thought.
Forum: Fixing WordPress
In reply to: The uploaded file could not be moved toHowever, some FTP clients reset permissions if you do not explicitly have permissions set to be preserved. Thus my question. You double checked it on your server?