Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > Graphics, Images, Logos Templates & CSS > Graphics, Images, Logos & Templates

Notices

Graphics, Images, Logos & Templates This is our newest forum dedicated to the above topics, please feel free to post any questions you have on the above topics in this forum. Also you may request templates or graphic in this forum.

Reply
 
LinkBack Thread Tools
  #1  
Old 09-17-2007, 10:55 PM
Sergeant
 
Join Date: Aug 2007
Posts: 32
Default logo's not compatible with browsers

Hi

I am still building my website and have just added a logo and Header text(using the logo option, cos you can do more with the format) to my header. I have chosen to have these without any background showing. I use internet explorer 7 and my template looks as I want itto . My friend who uses internet explorer 6 has a different picture ie the background of the logo boxes show as white and the fonts are different?? Does this mean that the logo option is not suitable for all browsers andwhat other quirks are there within bluevoda. Its a bit annoying to find that I have spent quite a bit of time designing my front page only to fond it does not seem to be compatible with all browsers.

any ideas ?? www.didjnt.com

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old 09-18-2007, 08:58 AM
zuriatman's Avatar
Brigadier General
 
Join Date: Sep 2006
Posts: 1,256
Thumbs up Re: logo's not compatible with browsers

Hi Ozmadman,

I have just been to your webpage and everything is fine.
Very well done congratulations for being different.
Thats the way to go. Norms are monotonus as there many millions around.

Could be you friend has not installed all the necessary add-ons for his browser and the advance properties in IE properly. Ask him to check them out.
__________________
www.siapamoyanganda.com/
Malaysian Family Tree Website From the
State of Johor.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old 09-18-2007, 10:14 AM
LadyEye's Avatar
General & Forum Moderator
 
Join Date: Jun 2006
Location: Canada
Posts: 9,909
Send a message via MSN to LadyEye
Default Re: logo's not compatible with browsers

You also need to be sure you are using web friendly fonts, if you friend does not have the same font installed on their computer as you, the font will revert to the computers default font and will show differently ...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old 09-18-2007, 05:15 PM
Watdaflip's Avatar
Brigadier General
 
Join Date: Sep 2005
Location: Cincinnati, Ohio
Posts: 1,638
Default Re: logo's not compatible with browsers

What file format is the image?

Also if you are just overlaying text because of there are more options, take a print screen on the header and paste it into an image editing program. That way you have picture of the full header not just the background, and it will display on anyones computers regardless if they have the font or not installed
__________________

Register/Login Script
Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old 09-19-2007, 03:05 AM
Sergeant
 
Join Date: Aug 2007
Posts: 32
Default Re: logo's not compatible with browsers

Hi All Thanks for your help, a friend of mine has written some code to deal with this problem as follows

create a new directory within blue voda and call it JavaScript

Paste this code into it;

var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])

if ((version >= 5.5) && (document.body.filters))
{
for(var i=0; i<document.images.length; i++)
{
var img = document.images[i]
var imgName = img.src.toUpperCase()
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
{
var imgID = (img.id) ? "id='" + img.id + "' " : ""
var imgClass = (img.className) ? "class='" + img.className +
"'
" : ""
var imgTitle = (img.title) ? "title='" + img.title + "' " :
"title='" + img.alt + "' "
var imgStyle = "display:inline-block;" + img.style.cssText
if (img.align == "left") imgStyle = "float:left;" + imgStyle
if (img.align == "right") imgStyle = "float:right;" + imgStyle
if (img.parentElement.href) imgStyle = "cursor:hand;" +
imgStyle
var strNewHTML = "<span " + imgID + imgClass + imgTitle
+ " style=\"" + "width:" + img.width + "px; height:" +
img.height + "px;" + imgStyle + ";"
+ "filter:progid:DXImageTransform.Microsoft.AlphaIma geLoader"
+ "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>"

img.outerHTML = strNewHTML
i = i-1
}
}
}

Save as txt file in your new Javascript folder and call it pngfix.js

Then past this code into html on your page using the html input box

<!--[if lt IE 7]>
<script defer type="text/javascript"
src="JavaScript/pngfix.js"></script>
<![endif]-->

and thats it!!

Should now be able to view correct format in IE6

Thanks
Paul
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT +1. The time now is 12:27 PM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2005-2009 VodaHost Web Hosting Your Perfect Web Host - All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176