Recent content by wwl777

  1. wwl777

    How to get media:thumbnail from XML Feed with JS

    I just found out myself, I had to know a little about xml namespaces before I could understand. With getElementsByTagNameNS you can select the name behind the colon. code I came up with: thumburl = itemXML.getElementsByTagNameNS('http://search.yahoo.com/mrss/'...
  2. wwl777

    New Kudosis website! Your opinion?

    Looks good! When I click at the pointer in the google maps part; is the label supposed to be empty then?
  3. wwl777

    www.timdsouza.com

    I love how the site has personality. Should change the styling of the (footer) links and nav links - the gradient buttons look a bit like outdated webdesign tech to me. Also would be nice if your logo header was clickable, linking to the homepage.
  4. wwl777

    Programmer porfolio, personal website review

    I like it. But why does the blog open on a whole new page? If you'd merge the layouts that would look even more pro imho.
  5. wwl777

    psdslice.co.uk - New Website Needs Suggestions

    Maybe remove the browers' image in the header. It's already there in the bottom. My first impression your site was all about browsers.
  6. wwl777

    new website problem

    I like your old design! Maybe you could revise that one ;) - combine your new design ideas with the old one.
  7. wwl777

    Mobile CSS

    For me this is a really useful site for testing resolutions that I found out lately: TestSize.com - test any web page in any window size My problem is I don't have an iPhone or iPad, so I wonder, how can you be sure it will render as I see it in my browser? What browser do those devices use?
  8. wwl777

    How to get media:thumbnail from XML Feed with JS

    I found out that the code I currently use to select media:thumbnail from an xml feed works in Firefox and IE9, but it isn't working in Chrome (returns undefined). The code I use: itemXML.getElementsByTagName('media:thumbnail').length Code like this doesn't give any problems...
  9. wwl777

    One of the greatest CMS options for designers

    I had seen this cms before but not used it yet. After reading your post I decided to give it a try. It seems to have alot of functionality. Basic configuration is pretty straightforward, but I want to be able to make custom templates so it looks like it will take some time to look into that...
  10. wwl777

    html5 video not working in safari?

    I will think I'll make a webm format too :p I was just getting stuck after the mp4 , because it didn't seem to work. I found a nice list on wiki of browsers and their support for video formats It says firefox is only supported on FF4 and it's also still experimental. You were right about the IE...
  11. wwl777

    html5 video not working in safari?

    Thanks for the try. I'm using Safari 5.0.3 and wasn't getting a video player showing up. After trying embed code it said Missing Plug-in and that I need quicktime to play the file. After installing quicktime it worked. To be honest I just never use Safari for other purposes than testing browser...
  12. wwl777

    html5 video not working in safari?

    This is the page: link . It is a video of some organ music.
  13. wwl777

    html5 video not working in safari?

    I followed the tut here and followed every step on how to make the .mp4 file. So I have no idea what could be wrong about the file itself. I've also tried different software (Miro Video Converter) without success.
  14. wwl777

    html5 video not working in safari?

    I'm trying to embed a video and making it work safari using a .mp4 file (should also apply to iphone and ie9). This is my code: <video width="320" height="240" controls preload="none"> <source src="video/ingebruikname_orgel_handbrake.mp4"> <source...
  15. wwl777

    Special characters not supported (html)?

    Good suggestion about that it is pulled from the database. Even if I encode my php page as utf-8, if it pulls stuff from the database it means those strings are written to the database in iso-8859-1 format. I changed my code to convert it to utf8:: $text= utf8_encode($row['text']); Fixed!!
Back
Top