pbwordp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Need some help calling an php fileHi mattyza, I had also tried both of your suggestions and it is not working. Any other ideas?
Forum: Themes and Templates
In reply to: Need some help calling an php fileHi chschenk, yes… it actually never evaluates the if true statement, it displays directly the jpg image. Could you tell me what is wrong here… this should work like this:
1. check if the flash plugin is available.
<?php
if(eregi(“application/x-shockwave-flash”, $_SERVER[‘HTTP_ACCEPT’])){ ?>2. If true, I want to include a flash.php file (were I have my flash movie)
include(‘my_flash.php’)3. else or if false, I want to display a JPG image.
<?php } else { ?>
<img src=”my_image.jpg”>
<?php } ?>Any thoughts on this?
Forum: Themes and Templates
In reply to: How do you use alternate themes for category pages?Have a look at this post…
http://wordpress.org/support/topic/276303?replies=14Forum: Themes and Templates
In reply to: Replacing a title in the Header with a logoOk, you should probably have a CSS file. Try to locate the style corresponding to the “div id” tag on your header.php file. It might be something like this #header { … there is were you want to place your image code:
#header {
background-image: url(‘My_Image.jpg’);
}Forum: Your WordPress
In reply to: My Blog – Please help me check if it’s ok on your browserI looked at the activity on your website and found the following:
1. you have a js that is 465 KB (that might be quite a lot): http://fc.ido24.com/calendar/calload.js
2. host not found on: http://pattayabechhotelgolf2.jpg/
3. you might want to try optimize more your images, you have lots of them and they are about 40-60 KB each. roughly speaking, your page is about 1-1.2 MB.
Forum: Themes and Templates
In reply to: Need some help calling an php fileHere is the code…
<?php
if(eregi(“application/x-shockwave-flash”, $_SERVER[‘HTTP_ACCEPT’])){ ?>
include(‘my_flash.php’)
<?php } else { ?>
<img src=”my_image.jpg”>
<?php } ?>*here is what I have.
Forum: Themes and Templates
In reply to: Need some help calling an php fileYes I had tried that… nothing happens. Is there something wrong with the code perhaps?
<?php
if(eregi(“application/x-shockwave-flash”, $_SERVER[‘HTTP_ACCEPT’]))
{ ?>Forum: Your WordPress
In reply to: New photoblog – vandalizegeorge.comI like the concept of your photo-blog, I can see people uploading all sort of bills and artwork on it. I also like the typeface and colors… although red and black don’t go too well with green, try some other variations. I would also try to come up with a cool header something creative with images from the bill and dollar bill fonts.
Cool man!!
Forum: Your WordPress
In reply to: vivalet.comYou might want to have your website checked with other browsers, I’m using Safari and some text and images are overlapping.
Your artwork is very nice but you need to make it the most important piece… I would tone your background image so it becomes just that, a background. Also some colors of your text and outlines are too harsh and distracted from your work, make them darker.
Forum: Your WordPress
In reply to: Please, I need feedback on this siteI would play with type a little bit, all type looks the same have something BIG “MY FUCKING LIFE”. Also black don’t work very nice with the light-blue, try some brown variations (complementary).
Forum: Your WordPress
In reply to: My Blog – Please help me check if it’s ok on your browserI’m using Safari… and there are some tweaks you might want to do with the alignment between images and text. There are some overflow images that looks they are overlapping other areas too.
Also… in my opinion overflow images on left side of parragraphs don’t look very organize. You can either hyphen the text or justify so it wraps a little better around your image.
Later…
Forum: Themes and Templates
In reply to: Need some help calling an php fileOK… well for some reason I can write the rest of the code. But right after the above code is were I need to call for my flash.php file.
Forum: Themes and Templates
In reply to: Need some help calling an php fileSorry about that, here is what my code looks like:
<div id=”header”>
<?php
if(eregi(“application/x-shockwave-flash”, $_SERVER[‘HTTP_ACCEPT’]))
{ ?>Forum: Themes and Templates
In reply to: Need some help calling an php fileForum: Themes and Templates
In reply to: Need some help calling an php fileOK, here is the code…
`<div id=”header”>
<?php
if(eregi(“application/x-shockwave-flash”, $_SERVER[‘HTTP_ACCEPT’]))
{ ?>