pascalou127
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Re-direct site URLThank you.
I’ll give it a try.Forum: Fixing WordPress
In reply to: Favicon-troublesYour favicon is located here: https://www.podblog.dk/favicon.ico
For the dimensions go for 16×16 (256 colours).
Not sure, but for example I think that IE only supports 16×16.
Forum: Your WordPress
In reply to: renet@web reboot re-design – Please comment.Thank you very much for your feedback and kind comments. I will try to implement your suggestions before Mays 1st!
Pascal.Forum: Fixing WordPress
In reply to: Capitalizing The Words In The HeaderHave you tried the css attribute:
text-transform: capitalize;
Forum: Plugins
In reply to: Is there a plugin for this?Forum: Your WordPress
In reply to: Please review: WP blog with phpbb integrationOriginal idea and nice theme too.
Forum: Your WordPress
In reply to: Check out my BlixMac ThemeVery nice theme.
Congrats.Forum: Fixing WordPress
In reply to: Tiny MCE and SafariGwynap, no, I think this was an issue with Safari….before Intel macs.
Forum: Installing WordPress
In reply to: having problems figuring out all this database stuffHi,
Your wp_config fille looks fine.
Looks like your problem is linked to web server file permissions not SQL database/server permissions. Try to change the file permissions of your server.Forum: Themes and Templates
In reply to: Photos not showingYes I saw that too. It looks like when you save a post an “x” is added to the img tag.
For example you’ll insert something like ….’img src=”blabla.jpg”‘…. and when you save the post this becomes…..’img xsrc=”blabla.jpg”‘….Don’t know why it’s doing that.Forum: Your WordPress
In reply to: What do you think about my siteHello. Thanks Tauquil.
Yes you are very right, and I do give due credit to BinaryBonsai here. It is a great site and inspiration to more than one person I’m sure.Forum: Your WordPress
In reply to: Feedback please on leftcoastlifestyle.comHello,
Nice site – like the header picture, but in IE (6.0) the sidebar appears below the main text.Forum: Your WordPress
In reply to: Awesome BlogsHowdy,
I’ve changed again. It used to be pascal.renet.free.fr but I’m now located at https://www.renet-web.net
CheerioForum: Plugins
In reply to: Date imagesNo it does show the month, but it’s probably too small to see.
Here is the code I have:
<img valign="middle" src="../wp-images/icons/thalassa_icon/<?php the_time('m_d') ?>.png" width="35">
hope it helps
Forum: Plugins
In reply to: Date imagesYou don’t need a ‘plug’ to do that. You can do that with php.
Look at my site click hereEvery post title displays an image of the date the post was posted. My images have a naming convention that is MM_DD.png (monthmonth_dayday.png) .To get that I use standard PHP functions – namely
<?php the_time('m_d') ?>
.
Just adapt that to your naming convention.