katgirl
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Next Gen Gallery] Slideshow on all pagesCan someone please confirm if the author or WordPress is supporting this plugin?
Should I remove the plugin and use a different one?
Forum: Plugins
In reply to: [Plugin: Next Gen Gallery] Slideshow on all pagesI’m hopeful I can get some answers on this one.
Can someone please advise?
Thank you
Forum: Fixing WordPress
In reply to: Where’d my sidebar go in IE 6.0??With all due respect, try this
Search words: sidebar IE dropped
Forum: Fixing WordPress
In reply to: How to insert image in post?Did you use an absolute image path?
http ://www.yourdomainname.com/path to images folder/nameofpiccy.jpg?I’ve noticed sometimes that if you don’t use absolute path inside the Post, sometimes it doesn’t work. It will produce a red X in the tiny box to suggest that an image lives there.
Sometimes, though, it works with relative paths ie: /images/imagename.jpg
Here’s a suggestion. Type the absolute path that leads to your image in a browser window (try IE). By rights it should come up and show you the picture. If it doesn’t then you definately have the wrong path to the image.
Edit: Space deliberately left so the url doesn’t become a hyperlink (yes, it was wrapped in
< code >and backticks used :0 )`Forum: Fixing WordPress
In reply to: How to insert image in post?You can do it manually, like so
1) Admin >> Write >> Post you want an image to display
2) insert: <img src="your domain.com / absolute path to image on your server" alt="Description of image" border="0" height="100px" width="100px" /> where you want the image to appear within your Post content.You may have to generate a class (.classname) for the image if you want styling to show, or margin padding, float:left or float:right, etc…
Forum: Themes and Templates
In reply to: Didactic ThemeIsn’t Didactic already available to wordpress? I have something very similar, and called the same name already installed on my sandbox…
Forum: Themes and Templates
In reply to: Sidebar at bottom of blogDid you attempt to repair your issue via those threads?
Generally speaking, if the sidebar drops to the bottom it is an image issue within a post. Or your Sidebar.
Either way, the image is too wide to fix the container in which it sits.
Forum: Fixing WordPress
In reply to: Posting pages and blog postsIf you’re worried about messing things up to the point that you can’t get your design back to what it was originally – back up your file BEFORE you attempt to do anything. If things go wrong, you can always upload your saved copy of your sidebar.php and start again.
You don’t have to delete anything from your sidebar. Just <
!--stuff here --> comment out what you don’t want to show. The comment will “hide” the code; in other words it will force it NOT to display.What theme are you using? That’s always helpful to know so others can help you.
Edit: I type tooo slow ๐
Forum: Fixing WordPress
In reply to: Image/Text AlignmentIf you use the image tag while writing your post, then you can insert that clearing br / after your image or text. If its inside a template, (ie: hard coded by you) you can do this also.
All the br / tag does is clear floating elements so whatever follows doesn’t float as well.
Forum: Fixing WordPress
In reply to: Image/Text AlignmentPut it wherever you want in the stylesheet, but it makes sense to put it with all image coding for ease of modifying, if necessary. Give it a header so you can locate it easily.
/**IMAGES
***********/
.alignleft {
width:150px;
border:none;
height:150px;
text-align:left;
margin:0 0 0 5px;
padding:0;
clear:all;
}img a {border:none;}
A: yes, but you really won’t need to generate new code in the stylesheet for it. Just stipulate your image size in the img HTML like so
ie: <
img src="yourdomain.com/path-to-image" width=300px" height="300px" border="0" alt="description of image" />Don’t forget a ‘space’ and backslash to close the image tag.
Forum: Fixing WordPress
In reply to: Image/Text AlignmentTo place an image 150×150 on the left, with text beneath, left hand side:
1) resize your nov06/cover.jpg to 150×150. Its currently 450×300 (54kb). Most free graphics editors will let you do this. Upload to your image files.
2) Go to Your Post and insert this:
<
img src="http://yourdomain.com/path to your images folder/nov06/cover.jpg" class="alignleft" />3) In your style sheet insert this:
.alignleft {
width:150px;
border:none;
height:150px;
text-align:left;
margin:0 0 0 5px;
padding:0;
clear:all;
}To ensure that your images don’t produce a border when used with hyperlinks:
img a {border:none;}
Note: margin:0 0 0 5px; forces the image 5px from the left so that its not squashed up against your left hand margin.
If you want the image on the left, and the text to start on the right and then ‘wrap’ around the image when the text runs past the bottom image margin, insert float:left; in your styling.
I’d also add <
br clear="left" /> straight after my html just to be sure to clear all floating elements.Forum: Installing WordPress
In reply to: Sidebar guestbook to own WPTried to look at your page, but it falls under the category “Sex”, so no looking…
In light of no looking (I’m not modifying my firewall settings) my suggestion is to read this: http://codex.wordpress.org/New_To_WordPress_-_Where_to_Start
Forum: Your WordPress
In reply to: First WP SiteI like your colors and your brand image. Very slick, neat and catchy.
Forum: Fixing WordPress
In reply to: Help! Front Page All JUMBLED UP!You have this after your closing <
/html> tag<!-- Suite101.com -->
<div class='widget'>
<a href= "http://www.suite101.com" alt="Suite101.com" class="widget"><img src= "http://www.suite101.com/graphics/gadget_logo.gif" class="widget"/></a>
<a href= "http://www.suite101.com/freelance_writers/" class="widget">Become a freelance writer!</a><br />
<h3 class="widget">Latest <a href= "http://childrenstv.suite101.com" class="widget">Childrenโs TV</a> Articles </h3>
<script type="text/javascript" src= "http://suite101.com/rss/widget.js?topic=childrenstv&type=articles" type="text/javascript"></script>
</div>
<!-- Suite101.com -->
<!-- Dynamic Page Served (once) in 1.476 seconds -->
<!-- Cached page served by WP-Cache -->You need to move it so that it resides BEFORE the closing <
/html>Also you have a bunch of <
strong> tags in use WITHOUT the closing tag </strong> ie:<
div><strong /></div`>just to name a few. You’ll need to clean them up.
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.janzeiger.com%2Fblog%2F
Forum: Everything else WordPress
In reply to: Need Your Opinion[Self-Edit: Bad Girl!]