breakingball
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Favicon not appearing in Safari and IE1. Quit Safari.
2. Open ~/Library/Safari/ and trash the Icons folder (which is where favicons are stored).
The Icons folder will regenerate when you relaunch Safari and your favicon will now appear in Safari’s address bar.
Forum: Requests and Feedback
In reply to: WordPress cannot be properly administrated using SafariYeah, well, Steve has a lot on his plate these days. Probably working late every night on an iWeb update, too…. ð
Forum: Requests and Feedback
In reply to: WordPress cannot be properly administrated using SafariI’ve used Macs more or less exclusively for over twenty years, so I understand your point. And until I started using WP, I was married to Safari, too. Now I do most of my work in Firefox, and it turns out that I don’t miss Safari at all.
(But if you don’t like Firefox, you can also use Camino, Opera and OmniWeb with WordPress without issue.)
Also, IMHO, you’re putting the cart before the horse: rather than complaining to WordPress about Safari’s problems with WordPress, you might consider complaining to Apple about Safari’s problems with Java, world leaks, WebKit, incompatibilities with WP and other apps, etc., because that is where all of our problems with Safari really lie.
Forum: Plugins
In reply to: Help – Lightbox not working.You have:
<link rel="stylesheet" href="http://www.eediete.nl/keuken/wp-content/plugins/lightbox-plugin/lightbox2.css" type="text/css" media="screen" />This should be:
<link rel="stylesheet" href="http://www.eediete.nl/keuken/wp-content/plugins/lightbox/lightbox.css" type="text/css" media="screen" />You have:
<script type="text/javascript" src="http://www.eediete.nl/keuken/wp-content/plugins/lightbox-plugin/js/prototype.js"></script> <script type="text/javascript" src="http://www.eediete.nl/keuken/wp-content/plugins/lightbox-plugin/js/effects.js"></script> <script type="text/javascript" src="http://www.eediete.nl/keuken/wp-content/plugins/lightbox-plugin/lightboxjs.php?path=http://www.eediete.nl/keuken/wp-content/plugins/lightbox-plugin/"></script>This should be:
<script type="text/javascript" src="http://www.eediete.nl/keuken/wp-content/plugins/lightbox/js/prototype.js"></script> <script type="text/javascript" src="http://www.eediete.nl/keuken/wp-content/plugins/lightbox/js/effects.js"></script> <script type="text/javascript" src="http://www.eediete.nl/keuken/wp-content/plugins/lightbox/js/lightbox.js"></script>The Lightbox folder inside your plugins folder should be called “lightbox,” not “lightbox-plugin.”
Also, where you have:
<a href="http://www.eediete.nl/keuken/pics/gebakken%20asperges.jpg"title="Caption on image" rel="lightbox[Name]" ><img title="gebakken asperges" alt="gebakken asperges" src="http://www.eediete.nl/keuken/pics/gebakken%20asperges.jpg" /></a>you don’t need rel=”lightbox [name]” where [name] is only necessary for images in a gallery context. Also, the second part of the image tag above should contain a link to a thumbnail image.
Forum: Fixing WordPress
In reply to: WordPress and Lightbox – HELP!Any last ideas before I chuck this train of thought????
Go here: http://www.huddletogether.com/forum/
Forum: Fixing WordPress
In reply to: WordPress and Lightbox – HELP!HooferWebsiteThumb.jpg.thumbnail.format
No. The name of this file has to be:
HooferWebsite.thumbnail.jpgSame with the others, e.g.,
SpringTask.thumbnail.jpgI just used “format” because I didn’t know what kind of images you were using.
Good luck!
Forum: Fixing WordPress
In reply to: WordPress and Lightbox – HELP!something else is wrong
I don’t see any images, so it’s hard to say.
Add images to your posts like this:
<a href="http://www.createitdesignit.com/wp-content/image_folder_name/image_name.format" rel="lightbox" title=".."><img src="http://www.createitdesignit.com/wp-content/image_folder_name/image_name.thumbnail.format" title=".." alt=".."/></a>Forum: Fixing WordPress
In reply to: WordPress and Lightbox – HELP!“I added that script right below the other java’s.
Correct?”
No. ð
There are three javascript files already in your header. You don’t need to add more javascript files.
All you need to do is add this:
http://www.createitdesignit.com/wp-content/plugins/lightbox/between src=”
and js/_.js”></script>
in each of the three files you initially added to your header.
Forum: Fixing WordPress
In reply to: WordPress and Lightbox – HELP!I see you’ve moved the javascript files where they belong, but you need to add the path to those files as well, e.g.,
<script type=”text/javascript” src=”http://www.createitdesignit.com/wp-content/plugins/lightbox/js/prototype.js”></script>
Forum: Fixing WordPress
In reply to: WordPress and Lightbox – HELP!It’s fine if they’re next to each other, but you will have to add an absolute path to the CSS file in your markup (see my post above) for this plugin to work.
You will also have to go into the CSS file and the lightbox.js file to add the path to the .gif files mentioned in Item 3 of the linked instructions.
Forum: Fixing WordPress
In reply to: WordPress and Lightbox – HELP!You need to put the three Javascript files between the <head> and </head> tags in your header (where you put the Lightbox CSS file).
Right now, the Javascript files are inside the <body> tags.
Also, the CSS file needs a path associated with it, e.g.
<link rel=”stylesheet” href=”http://www.createitdesignit.com/wp-content/plugins/lightbox/css/lightbox.css
Forum: Installing WordPress
In reply to: Where are Your Themes?Why am I searching for 1/2 hour on this site for a listing of themes?
Good question. ð
Forum: Themes and Templates
In reply to: Lightbox CSS ValidationI had a similar issue when I appended the lightbox.css file to my theme’s style sheet, but when I removed it and added
<link rel="stylesheet" href="http://xxx.com/xxx/wp-content/plugins/lightbox/css/lightbox.css" type="text/css" media="screen" />to the <head> tag in my theme’s header.php file, the CSS validated.
Forum: Themes and Templates
In reply to: no captions for lightbox in BlueBlack themeThere is no title attribute for the floating rose image, so there is no caption for that image.
Forum: Themes and Templates
In reply to: no captions for lightbox in BlueBlack themeLightbox is up to v2.0.2. Maybe it’s time to update.