Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged blocks

Rss Feed Group items tagged

Vernon Fowler

@font-face gotchas « Paul Irish - 1 views

  • There are a few reasons why smiley is a better solution: Webkit+Font Management software can mess up local references, like turning glyphs into A blocks.  (crbug.com/33173) On OS X, Font Management software may alter system settings to show a dialog when trying to access a local() font that's accessible outside of Library/Fonts. More detail on my bulletproof post. (crbug.com/29729) Font Explorer X is also known to mess up other stuff in Firefox: bugzil.la/531771 Although it's unlikely, you could reference a local() font which is completely different than what you think it is. (Typophile post on different fonts, same name) At the very least its a risk, and you're ceding control of the type to both the browser and host machine. This risk may not be worth the benefit of avoiding the font download. These are all pretty edge case issues, but it's worth considering. FontSquirrel has already made the smiley syntax the new default in the Generator, and you should use it going forward as well.
  • And.. regarding @font-face syntax I now recommend the bulletproof smiley variation over the original bulletproof syntax.
  • @font-face { font-family: 'Graublau Web'; src: url('GraublauWeb.eot'); src: local('?'), url('GraublauWeb.woff') format('woff'), url('GraublauWeb.ttf') format('truetype'); }
  • ...5 more annotations...
  • in Webkit (Chrome/Safari), applying font-weight:bold to faux-bold some @font-face'd text will not succeed. Same applies for font-style:italic.
  • text-transform doesn't play well with @font-face in current implementations.
  • @font-face doesnt play nice with css transitions.
  • If a @font-face declaration is within a media query @media screen { ..., it will fail in Firefox.
  • SVG Fonts - Currently SVG is the only way to get webfonts working on iPhone and iPad.
  •  
    "There are a few reasons why smiley is a better solution: Webkit+Font Management software can mess up local references, like turning glyphs into A blocks.  (crbug.com/33173) On OS X, Font Management software may alter system settings to show a dialog when trying to access a local() font that's accessible outside of Library/Fonts. More detail on my bulletproof post. (crbug.com/29729) Font Explorer X is also known to mess up other stuff in Firefox: bugzil.la/531771 Although it's unlikely, you could reference a local() font which is completely different than what you think it is. (Typophile post on different fonts, same name) At the very least its a risk, and you're ceding control of the type to both the browser and host machine. This risk may not be worth the benefit of avoiding the font download. These are all pretty edge case issues, but it's worth considering. FontSquirrel has already made the smiley syntax the new default in the Generator, and you should use it going forward as well. "
mikhail-miguel

Monkey Writer - Accelerates content creation, eliminates writer's block (monkeywriter.me). - 0 views

  •  
    Monkey Writer: Accelerates content creation, eliminates writer's block (monkeywriter.me).
mikhail-miguel

Story Path - AI-powered app helps plan stories & cure writer's block quickly (storypath... - 0 views

  •  
    Story Path: AI-powered app helps plan stories & cure writer's block quickly (storypath.app).
mikhail-miguel

Block Survey - BlockSurvey enables digital rights for the users (blocksurvey.io). - 0 views

  •  
    Block Survey: BlockSurvey enables digital rights for the users (blocksurvey.io).
Vernon Fowler

Official Google Webmaster Central Blog: Using the robots meta tag - 0 views

  •  
    Valid meta robots content values Googlebot interprets the following robots meta tag values: NOINDEX - prevents the page from being included in the index. NOFOLLOW - prevents Googlebot from following any links on the page. (Note that this is different from the link-level NOFOLLOW attribute, which prevents Googlebot from following an individual link.) NOARCHIVE - prevents a cached copy of this page from being available in the search results. NOSNIPPET - prevents a description from appearing below the page in the search results, as well as prevents caching of the page. NOODP - blocks the Open Directory Project description of the page from being used in the description that appears below the page in the search results. NONE - equivalent to "NOINDEX, NOFOLLOW".
anuavanthi

Sentrifugo Release 2.1.1: Introducing the Approve/Reject Timesheet Feature in Time Module - 0 views

Sentrifugo is a FREE and open source Human Resource Management System that can be easily configured to meet your organizational needs. It offers HR modules with exceptional features and an intuitiv...

hrms human resource management system opensource hr software free hrm download

started by anuavanthi on 20 May 16 no follow-up yet
anonymous

Zend Framework -ZendView - 0 views

    • anonymous
       
      An dieser Stelle kann man mehrere Views für eine Action erzeugen. Variablen müssen dann mit ->setVariables(array()) oder ->setVariable(Einzelwert an den passenden View übergeben werden.
  • $view = new ViewModel(); // this is not needed since it matches "module/controller/action" $view->setTemplate('content/article/view'); $articleView = new ViewModel(array('article' => $article)); $articleView->setTemplate('content/article'); $primarySidebarView = new ViewModel(); $primarySidebarView->setTemplate('content/main-sidebar'); $secondarySidebarView = new ViewModel(); $secondarySidebarView->setTemplate('content/secondary-sidebar'); $sidebarBlockView = new ViewModel(); $sidebarBlockView->setTemplate('content/block'); $secondarySidebarView->addChild($sidebarBlockView, 'block'); $view->addChild($articleView, 'article') ->addChild($primarySidebarView, 'sidebar_primary') ->addChild($secondarySidebarView, 'sidebar_secondary'); return $view;
Saif Shuvo

Professional Web Design & Development Curriculum - 0 views

Lesson: 01 (Dreamweaver Basics & HTML) Introducing Dreamweaver, Elements, Attributes, Table, List, Forms, Formatting, Styles, Image, Hyperlinks. Head, Meta, Scripts, Layout, Fonts, URL- encode ...

webdesign web development

started by Saif Shuvo on 07 Jan 17 no follow-up yet
Luciano Ferrer

Stupid htaccess Tricks * Perishable Press - 1 views

  •  
    "Stop Hotlinking, Serve Alternate Content To serve 'em some unexpected alternate content when hotlinking is detected, employ the following code, which will protect all files of the types included in the last line (add more types as needed). Remember to replace the dummy path names with real ones. Also, the name of the nasty image being served in this case is "eatme.jpe", as indicated in the line containing the RewriteRule. Please advise that this method will also block services such as FeedBurner from accessing your images."
Vernon Fowler

Best Practice: Get your HEAD in order - EricLaw's IEInternals - Site Home - MSDN Blogs - 1 views

  • To ensure optimal performance and reliability when rendering pages, you should order the elements within the HEAD element carefully.
  • Optimal Head Ordering <doctype>     <html>         <head>             <meta http-equiv content-type charset>              <meta http-equiv x-ua-compatible>             <base>             <title, favicon, comments, script blocks, etc>
  • If you must specify the character set using a META tag for some reason, it is critical that the META tag is the first element in the HEAD.
  • ...1 more annotation...
  • If you must specify the X-UA-Compatible value using a META tag for some reason, this element MUST appear before any script blocks and SHOULD appear as early in the HEAD element as possible.
GoMage GoMage

Long-awaited release of Advanced Navigation version 4.1 - 0 views

  •  
    We are in a hurry to introduce you a revolutionary version 4.1 of Advanced Navigation extension, which is full of only with advantages: - Now extension works faster! JavaScript runs about 20% faster; - SEO optimization: Preventing Google from indexing the pages! - Added ability to display two "Shop By" blocks; - Added ability to choose the next/previous product or return from the product page without additional pages; - Added ability to set up the ranges for price; - Added ability to set up the attribute location; - Added ability to show currency in slider; - Ability to change the buttons text and color; - Improved ability of using Advanced Navigation and SOLR; - Added ability to use "Show Next 20" options for attribute; - And others.
Jochen Burkhard

10 Websites To See What HTML5 Is All About - 0 views

  •  
    "HTML (HyperText Markup Language) is the most widely used markup language today. Tags, elements and angle bracket with a bit of help from CSS forms the building block of all that you see around on the World Wide Web."
awqi zar

Mozilla Webdev » Blog Archive » Cross-Browser Inline-Block - 0 views

  •  
    www.killdo.de.gg Most quality online stores. Know whether you are a trusted online retailer in the world. Whatever we can buy very good quality. and do not hesitate. Everything is very high quality. Including clothes, accessories, bags, cups. Highly recommended. This is one of the trusted online store in the world. View now www.retrostyler.com
Raja uk

JQuery Curvy Corners | Ajaxmint.com - 0 views

  •  
    A free JavaScript for creating gorgeous curvy rounded corners for HTML block elements i.e. DIVs. Supports anti-aliasing, borders and background images.
Luciano Ferrer

CurvyCorners - Beautiful rounded corners for your HTML boxes - 3 views

  •  
    "What is CurvyCorners? A free JavaScript library for creating gorgeous rounded corners for HTML block elements i.e. DIVs. Supports anti-aliasing, borders and background images."
Josh Wilson

Why WordPress Sites are blocked by Google, WordPress Hacking & SEO Research - 0 views

  •  
    We are providing here wordpress hacking, Malware Attack, seo effect on hacked wordpress site and how to secure your wordpress web design. I hope you will like it.
sania batool

Hotspot Shield Elite Crack 2015 With Keygen Free Download - 0 views

  •  
    Hotspot shield elite crack 2015 is known as VPN or proxy tool used to unblock YouTube, Facebook and other blocked websites in Pakistan and other countries.
shahzaibqureshi

Auslogics BoostSpeed 8 Crack and Serial Key Free Download - 0 views

  •  
    Auslogics BoostSpeed 8 boost up your Internet connections, tweak Windows to its peak performance, clean registry and block annoying ads.
Laura Reed

Know These Web Dev Building Blocks - Udacity - Climb Higher - 2 views

‹ Previous 21 - 40 of 78 Next › Last »
Showing 20 items per page