1 laibcoms Aug 04, 2009 11:57
3 laibcoms Aug 09, 2009 09:22
John wrote:
Apart from some HTML5 text formatting validation errors it looks good.
Thanks for the work
Thanks!!
I moved the HTML5 setting to the backoffice under skin settings for august 8th release. Users can choose to opt-out (default: opt-in).
If users chooses to opt-out, they have to change the DOCTYPE declaration and HTML element to their choosing HTML4/XHTML1.0/XHTML1.1. (html lang="" is not allowed pre-HTML5; and !DOCTYPE html was introduced in HTML5 [but if my memory serves me right, the !DOCTYPE html declaration should load XHTML1.0 but the W3C validators haven't been updated yet])
I still haven't figured out how to edit the first two elements the "Skin Settings" way :p (or maybe it isn't possible).
Again thanks for the feedback!!
4 topanga Aug 09, 2009 10:12
Looks like a very nice skin.
now the 3 type column layout and it will be a blast
5 yabba Aug 09, 2009 10:53
Laibcoms wrote:
I still haven't figured out how to edit the first two elements the "Skin Settings" way :p (or maybe it isn't possible).
<?php
if( $Skin->get_setting('html5_flag') )
{
echo '<doctype>';
}
else
{
echo '<normal doctype>';
}
?>
¥
6 laibcoms Aug 09, 2009 15:48
¥åßßå wrote:
Laibcoms wrote:
I still haven't figured out how to edit the first two elements the "Skin Settings" way :p (or maybe it isn't possible).
<?php if( $Skin->get_setting('html5_flag') ) { echo '<doctype>'; } else { echo '<normal doctype>'; } ?>
¥
Yep, I meant for this one:
add_headline( );
I can't use that one for the doctype declaration since it should be the very first line...
still looking tho.
7 yabba Aug 09, 2009 19:01
Just add the code above in _html_header.inc.php where the current doctype is
¥
8 laibcoms Aug 10, 2009 04:01
¥åßßå wrote:
Just add the code above in _html_header.inc.php where the current doctype is
¥
Yep, I was thinking about what you posted while preparing to go to sleep last night. Then boom.. LOL... you meant the header file not the skin_class file. I forgot it's in php lol.
Going to update it and make it validate to XHTML then submitting to b2evo.com repo.
9 laibcoms Aug 10, 2009 08:01
Updated!
What's new:
Columns selection now available
DOCTYPE and HTML elements switches accordingly re: HTML5 skin_setting feature (if HTML5 is unchecked, it switches to XHTML1.0 Strict)
skininfo.html
and other minor stuff
[/list:u]
10 klutzys Feb 05, 2010 23:35
I love this theme but how can I change the lower case type. I don't like this look and prefer to use caps for the beginning of words. :) So I want it to show it how I type it using lower and upper case.
Thanks,
Tam
11 laibcoms Jun 10, 2010 04:18
Klutzys wrote:
I love this theme but how can I change the lower case type. I don't like this look and prefer to use caps for the beginning of words. :) So I want it to show it how I type it using lower and upper case.
Thanks,
Tam
Hi, open the file: /skins/nonzero/rsc/css/style.css
Search for: h3
You should find this: text-transform: lowercase;
Delete it ^_^ (or just change it to: /* text-transform: lowercase; */ )
Apart from some HTML5 text formatting validation errors it looks good.
Thanks for the work