macewan
Forum Replies Created
-
Forum: Plugins
In reply to: codergurl’s hackshttp://www.sitepoint.com/article/1041/1
via link on tcervo
😉Forum: Fixing WordPress
In reply to: Links in alphabetical order?<?php get_links(-1, ‘
- ‘, ‘
- ‘, ‘
‘, ”, 0, ‘name’, 0, 0, -1, -1)?>
instead of
<?php get_links(-1, ‘‘, ”, 0, ‘_updated’, 0, 0, -1, -1)?>
this is under the menu section of your index.phpForum: Plugins
In reply to: image upload>thumbnail hack odher improvementsI’m going to use this hack (mod’d a little) for projects on sourceforge. Will add more options in the b2upload window. Like multi image upload, a button that takes you back to upload option once current image thumb is displayed. This will be useful for screenshots on projects.
🙂Forum: Plugins
In reply to: image upload>thumbnail hack odher improvementsreally like the idea behind this. i’m working on incorporating a simple copy right message to be automaticly added to an image. using gd also.
http://www.macewan.org/wordpress/index.php is a quick and dirty example – minus my work – of the above *.zip file. i created an image directory on under this working wordpress directory to store the images. also a edit is made the the thumbs.php file to reflect where the image is stored. (erased the ./data/ portion)Forum: Themes and Templates
In reply to: Help with CSS// In the xhtml file //
<div class=”bob”>text</div>
<div id=”larry”>text</div>
———————————————————–
// In the css file //
div.bob {
text-align: center;
font-size: 12pt;
color: #333;
}
div#larry {
text-align: center;
font-size: 10pt;
color: #ccc;
}
———————————————————–
div.bob is a class.
div#larry is an id.
———————————————————–
classes would be used more than once, like with paragraphes in a blog.
id’s are used once like with a copyright notice at the bottom of page.
———————————————————–Forum: Plugins
In reply to: Preview picture in upload window.b2upload.txt is the complete file.
make sure you are using the correct path also. look at your existing code just to make sure.
/path/to/your/images/images/$img1_name
/home/fred/public_html/images/$img1_name