• 0

Created a Tumblr Theme


Question

Howdy! I created a dark Tumblr theme attempting to use HTML 5. All I really did is use the new tags since I'm not familiar with using any of the other new features. I've started making themes based on well... a theme! My website's theme is based on the titanic so I made this one into space. Anyway.. Feedback would be appreciated, So without further adieu:

http://caseymilstead.com/lab/space/

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

The problem is in the browser... The theme is develop using HTML5...

I thought that, at first, but I'm sure I've browsed HTML5 sites in Firefox, and not had any problems. Might be wrong.

Link to comment
Share on other sites

  • 0

I looked into it, and it may be because I forgot to host the html5.js with tumblr so it removed it. It should work now :)

EDIT: Actually no, it wasn't that. the <time> tag wasn't closed properly. but at least it works with ie now then.

Link to comment
Share on other sites

  • 0

Small issue, you'll want to put the standard CSS properties after the prefixed versions in your CSS file, so not like this.

border-radius: 5px;
-moz-border-radius: 5px;

But like this.

-moz-border-radius: 5px;
border-radius: 5px;

It's not so much a problem with Firefox, but WebKit browsers treat the prefixed properties differently (keeps around historical bugs and behaviour), so having the prefixed variant second overrides the CSS standard property, with the old buggy behaviour (which is the opposite of what you want)

Apart from that, the design looks good. Although I'd probably use a HTML5 aware reset style sheet as a base just to ensure that older browsers know how to display HTML5 block level and inline elements.

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.