Code Monkey home page Code Monkey logo

html5-reset's People

Contributors

ad-si avatar manavv20 avatar mheesters avatar murtaugh avatar patoroco avatar shesek avatar simonharte avatar suhane234 avatar thenickcox avatar wbinnssmith avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

html5-reset's Issues

Load functions.js via wp_enqueue_script()

Instead of loading functions.js via a script tag in footer.php, load it in functions.php via wp_enqueue_script(). This way WP plugins that change scripts, for example, W3 Total Cache, will be able to minify the code.

Max Width issues

I discovered that

img,
object,
embed {max-width: 100%;}

applied by default on those elements causes more problems than other. Would it be better to associate a class to the feature, like

.responsive {max-width: 100%;}

or maybe force the responsive behaviour on figures?

figure img,
object,
embed {max-width: 100%;}

Everytime i use html5reset i have to fix that. Maybe it's a common issue. Expecially when I have to face with full page backgrounds that setting causes strange views.

localisation WordPress HTML5-Reset

Your brand new WordPress Theme HTML5-Reset looks fantastic in all aspects but one: localisation.

Everyone is so hypered up about HTML5 and CSS3 and people come with whole new sets of tools, tips and tricks, but the basics are once again simply ignored.

Localisation would make the WordPress HTML5-Reset theme a true gem for the entire world to be admired!

outline:none accessibility issues

I use the keyboard a lot when browsing sites and many of them use outline:none, probably without realising, which makes it impossible to know which element is currently focused. I also see many designers/developers using CSS resets and not reading the comments to replace outline:none with something else. I propose that outline:none and outline:0 should be removed and maybe a comment could be in place explaining how you can replace the outline with something else.

More info: http://outlinenone.com/

Problem listing tags

Hi! I have noticed that was a problem with listing tags. Some tags doesn't list any posts and sometimes if I have 2 posts filed under the same tag, only shows 1.

Can you help me with that? Sorry for my english if I have made any mistake.

Thanks!

clearfix escaping got escaped

i'm seeing content: "020"; when it should be content: "\0020";

otherwise, everything else looks great!

congrats on shipping 2.0, tim! :)

conditional comments on the <html> tag stop IE8 & 9 from going into EDGE mode

IE8 & 9 are set to 'Display intranet sites in compatibility view'... they will drop into IE7 standards mode if you put the conditional comments where you've got them.

(Sorry I haven't had a chance to test in IE10 or 11)

This is also raised as an issue here.

Move them to the body tag and IE will respect the 'Edge mode' request again... and all still appears to work fine.

Several other possible solutions are discussed here - the 'pre-emptive conditional comment' method is quite neat I think

conditional comments before the html tag

conditional comments before the body tag

Question: Should HTML5 Reset break into more files?

Should we break the Reset up into more files? (This would affect CSS the most, I think.)

A couple of thoughts:

  1. Multiple files are easier to develop with, segregating styles, logic, and markup into discrete files based on their purpose. (For example, I think a legacy.css file would be nice for styles that only affect older browsers.)
  2. Multiple files cause browsers to take longer to render a page, but I think it's safe to assume that most people are either running pre-processors to concatenate their files or they'd be prepared to manually concatenate pre-launch.

What do you think?

Links in comments are dead

The links in the comments of style.css which should point to more info about the new font stack and the info about using your own font don't work.

Checkbox *vertical-align rule gives warning in Visual Studio 2010

The CSS contains the following bit of code:

input[type="checkbox"] {vertical-align: bottom; *vertical-align: baseline;}

The bit with *vertical-align is not quite valid CSS. When using this CSS in Visual Studio 2010 (with SP1 and the "Web Standards Update" extension for CSS3 support) VS will have one warning, complaining about that particular line of code. This also prevents you from using the "Format Document" feature. The warning is:

Unexpected character sequence. Expected a property name for the "<property> : <value>" declaration.

As the piece of CSS in question is presumably for IE7 support (right?), the above snippet could perhaps be changed to:

input[type="checkbox"] {vertical-align: bottom;}
.ie7 input[type="checkbox"] {vertical-align: baseline;}

Dynamically-generated site name instead of www-sitename-com

Hey all, here's a solution I added to make the little

<head id="www-sitename-com" in header.php a dynamic thing based on the user-entered site title, not just a static thing that would need be to be replaced.

First, I created a hook in functions.php:

function html5reset_head_id() {
    do_action('html5reset_head_id');
}

function head_id_slug() {
 $headidslug = get_bloginfo('name');
 $headidslug = ereg_replace("[^A-Za-z]", "", $headidslug);
 $headidslug = strtolower($headidslug);
 echo $headidslug; 
}          
add_action('html5reset_head_id','head_id_slug');  

This removes all non-letter characters, even numbers, and then makes the string all lowercase.

Then, I just replaced

<head id="www-sitename-com" data-template-set="html5-reset-wordpress-theme" profile="http://gmpg.org/xfn/11">

with

<head id="www-<?php html5reset_head_id(); ?>-com" data-template-set="html5-reset-wordpress-theme" profile="http://gmpg.org/xfn/11">

So for the site I have with the title Hey It's George, www-heyitsgeorge-com is returned :)

Let me know if you guys have problems with this, if not maybe it can be added to the Reset.

mobile app icons

iphone, android and so...

also firefox os...

It would be great to add that

Grab Google CDN's jQuery.

The current download is missing "http:" in the script src attribute.

script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"

Error including jQuery

There is an error in index.html on line 113 (including google's jQuery)

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>

Needs an 'http:'

Add Some Description :

issue1

which types of code it is i don't understand anything ...
add some description that s why easily any body can understand the project and also upload this in a formate .make clean code.

Why add id and data-* attributes to the head element?

Hi,
First off, thank you for sharing your reset with us - it makes a nice counter-point to HTML5Boilerplate and is very helpful in developing my own. I'm just wondering why you have specified an id attribute on the head element? I haven't found any mention of this elsewhere (or my google-fu has failed me). Also, what are the use cases for a data-* attribute on head? Thanks for your time.
/Eoin/

Posts loop improvements

  1. Move posts loop to loop.php. This way the loop could easily be reusable for several templates via the get_template_part( 'loop') function.
  2. Surround loop in a tag. Possibly section, or div.

bullet points not visible

Why the bullet points can not be turned on for any class?
My class has
list-style-type: disc;
and see it there on "Inspect Element" or in FireBug but it is not rendered.

Widgets disapeared in Admin panel

Hello,
I've noticed that the widgets disappears from my admin panel whenever i activate HTML5-Reset theme, am i doing anything wrong?

ie generic class up to 9?

Hey guys!
I've noticed that you are using a generic ie class up to ie9 on your html tag.

I worked on a project lately and discovered that ie9 actually doesn't share lot's of issues as ie6-8 (6-7 mostly). Also, I found myself using this ie6-8 generic class only for css degradation (no border-radius or shadows) and specific classes for version related fixes, which didn't include ie9 since it rendered most of the code just fine.

Thanks!

IE input button styling

Hi,

Currently there is: /* make buttons play nice in IE */ button {width: auto; overflow: visible;}

But what about input type buttons <input type="button" value="ahsdfhasdfh asdlfjkasdklfj asd"/> ?
These buttons suffer the same fate in IE.
Shouldn't there be a reset for it too?

Thanks. D

It's Twenty Twelve!

There are a couple of places 2011 is still in use within index.html:

  • <meta name="Copyright" content="Copyright Your Name Here 2012. All Rights Reserved.">
  • <footer><p><small>&copy; Copyright Your Name Here 2012. All Rights Reserved.</small></p></footer>

Superfluous ";}" breaks .css file

Hi there,

at the end of line 126, there's what seems to be a superfluous ";}" which breaks the css or at least the font declaration for body in line 127.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.