SlideShare a Scribd company logo
Performance Considerations for
   Custom Theme Development
                   Kevin Weisser
                  Noriaki Tatsumi
Overview


•   Introduction to Themes
•   Blackboard Customization Approach
•   Introduction to CSS
•   CSS Performance Considerations
•   Image Performance Considerations
•   Front-end Analysis Tools
Blackboard Custom Themes
Blackboard Custom Themes
Blackboard Custom Themes


• Blackboard 9.x contains a flexible user interface
  which can be easily branded to have the look
  and feel of your institution
• This can be accomplished by changing any of
  the following:
  – Themes/Color Palettes
  – Images
  – Customizing Login Page
Blackboard’s Recommended
           Customization Approach
1.   Access Learn as System Administrator
2.   Navigate to System Admin tab
3.   Click on Brands and Themes
4.   Click on Theme and Palette Catalog
5.   Click icon beside BbLearn Theme
6.   Download the theme and save it to your
     desktop
Blackboard’s Recommended
          Customization Approach
7. From Theme and Palette Catalog, select Create
    Theme
8. Provide the required fields (Theme Name and
    Reference Name) and click Browse My Computer
9. Select the recently downloaded theme
10. Click Submit
11. Open the file on the application server (Bb root-
    >content->vii->BBLEARN->branding->themes-
    >Your Theme Folder) in your favorite editor and
    proceed to make your changes
Blackboard’s Recommended
Customization Approach Cont.
Performance Stories From the Field


• Customized login page loads slowly
  – Mitigated by limiting the requests to those used by
    the browser
• Drag and drop functionality appears choppy
  – Mitigated by cleaning up poor performing CSS
    selectors
• Pages load slowly in areas with limited
  connectivity
  – Mitigated by leveraging browser cache and
    ensuring that requests were compressed/minified
Introduction to CSS


• Imagine the following block:
       ...
       ul#summer-drinks li {
          font-weight: normal;
          font-size: 12px;
          color: black;
       }
       …
       <ul id="summer-drinks">
         <li>Whiskey and Ginger Ale</li>
         <li>Wheat Beer</li>
         <li>Mint Julip</li>
       </ul>
       …
Introduction to CSS


• You want to designate a favorite:
    …
    ul#summer-drinks li {
       font-weight: normal;
       font-size: 12px;
       color: black;
    }
    .favorite {
      color: red;
      font-weight: bold;
    }
    …
           <ul id="summer-drinks“>
                 <li class=“favorite”>Whiskey and Ginger Ale</li>
                 <li>Wheat Beer</li>
                 <li>Mint Julip</li>
           </ul>
Introduction to CSS
Selector                Specificity

*                       0,0,0,0

li                      0,0,0,1

ul li                   0,0,0,2

ul ol li.red            0,0,1,3

li.red.level            0,0,2,1

#x34y                   0,1,0,0

style=“display:none”    1,0,0,0
Introduction to CSS


• Higher specificity selectors are applied

• Last style declared is applied when a tie exists

• !important overrides the specificity
Quantifying Impact
CSS Performance Considerations


• Anti-patterns
  –   Unused Selectors
  –   Universal Selectors
  –   Over Qualified Selectors
  –   :hover Pseudo Selector
  –   Descendant Selectors
  –   @import Usage
• Optimization
  – Minification
Unused Selectors


• What are unused selectors?
  – Declared selectors which are not applied to any
    element of the DOM
• How does this impact performance?
  – CSS is blocking
  – More Styles = Larger Files = Longer download
    times
  – More Styles = More Parsing
  – More Styles = More Evaluations
Unused Selectors


• Mitigation techniques
  – Split external CSS into smaller files grouped by
    related functionality/styles
  – When adding styles:
     • Be aware of already defined styles
     • Be aware of selector specificity
     • Be aware of which attributes are available various
       DOM elements
Universal Selector


• What is a universal selector?
  – Universal selectors are denoted by the ‘*’ symbol
     • Example: .itemGallery *{zoom:1;}
• How does this impact performance?
  – Right to left evaluation
  – Reflow in interactive pages
• Mitigation techniques
  – Be specific
Universal Selector
Universal Selector
Over Qualified Selectors


• What is an over qualified selector?
  – ID selectors denoted by ‘#’ that has a preceding
    element tag
     • Example: div#lightboxContent h2{position:relative};
  – Class selectors denoted by ‘.’ that has a preceding
    element tag
     • Example: div.stopped p img{background:#fff -180px;}
Over Qualified Selectors


• How does this impact performance
  – One more comparison is required during evaluation
• Mitigation techniques
  – Don’t specify the element before the ID/Class
    selector
  – IDs should be unique
  – Classes can be unique
:hover Psuedo Selector


• What is the :hover pseudo selector?
  – Elements that specify a different style when the
    mouse hovers over the element element
     • Example:
        – tr.S {background-color:#000000}
        – tr.S:hover {background-color:#FFFFFF}
• How does this impact performance?
  – IE degradation on non-anchor elements
  – IE9 may correct this problem
:hover Psuedo Selector
• Mitigation techniques
        <style type="text/css">
          tr.S {background-color:#000000}
          tr.S:hover {background-color:#FFFFFF}
        </style>
        <table>
        <tr class="S">
          <td>foo bar</td>
        </tr>
        </table>

        <table>
        <tr style="background-color:#FFFFFF"
        onmouseover="this.style.backgroundColor='#000000'"
        onmouseout="this.style.backgroundColor='#FFFFFF'">
          <td>foo bar</td>
        </tr>
        </table>
Descendant Selector


• What are descendant selectors?
  – Descendant selectors filter based criteria
     • Example: treehead treerow treecell {…}
• How does this impact performance?
  – More evaluations
Descendant Selector


• Mitigation techniques
  – Use of child selectors prevent DOM traversal
     • treehead > treerow > treecell {…}
  – Class selector is preferred
     • .treecell-header {…}
  – Use caution this approach can reduce reusability
@import Usage


• What does @import do?
  – Allows stylesheets to include other stylesheets
• How does this impact performance?
  – Set number of connections available to request
    resources
  – Eliminates parallelism
• Mitigation techniques
  – <link> tags alllow for parallel CSS download
CSS Minification


• Process which removes comments, return
  characters, and unnecessary white space
• Sacrifices readability for smaller file sizes
• Free tools available (ex. YUICompressor)
• Themes uploaded from the System Admin tab
  are immediately compressed
CSS Minification
Image Performance Considerations


• Anti-patterns
  – Inappropriate image format
  – Unreachable images
  – Unused Images
Inappropriate Image Format:
                  JPEG
• Recommended for realistic pictures with smooth
  gradients and color tones
• Not lossless
• Sacrifice compression for resolution
• JPEGTran optimization
Inappropriate Image Format:
               PNG and GIF
• PNG and GIF should be used for solid color images
  (charts or logos)
• Use PNG over GIF unless
  – Image contains animation
  – Image is extremely small (a few hundred bytes),
    because GIF tends to be smaller than PNG
• PNG is superior because
  – Copyright free
  – More efficient compression
  – Stores all bit depths
• OptiPNG, PNGCrush for optimization
Unreachable Images


• Make sure path to image is correct
• 404 status on any request is a wasted request
  – Request may be blocking
  – Reduces parallelism
• Verify all images are reachable via browser
  profile tools, such as Firebug
Unused Images


• Request to unused images creates unnecessary
  delays
• Longer download times
• Reduced parallelism
Front End Analysis Tools

• Firebug (http://getfirebug.com/)
   – Inspect HTML and modify style/layout in real-time
   – Debug JavaScript
   – Analyze network usage and performance
• PageSpeed (http://code.google.com/speed/page-speed/)
   – Optimize with Web performance best practices
   – Rules of particular interest
      • Avoid bad requests
      • Avoid CSS @import
      • Combine external CSS
      • Minify CSS
      • Optimize Images
      • Use efficient CSS Selectors
Questions & Answers
Please provide feedback for this session by emailing
         DevConFeedback@blackboard.com.


            The title of this session is:
Performance Considerations for Custom Theme (CSS)
                   Development

More Related Content

PDF
2 introduction css
PPTX
Wordpress theme development
PPTX
Cascading style sheets
PPT
WordPress 101 - Self-Administered Small Business Web Sites and/or Blogs; Wor...
PPT
Web design-workflow
PDF
4. Web Technology CSS Basics-1
PDF
Html css
2 introduction css
Wordpress theme development
Cascading style sheets
WordPress 101 - Self-Administered Small Business Web Sites and/or Blogs; Wor...
Web design-workflow
4. Web Technology CSS Basics-1
Html css

What's hot (20)

PDF
Basic-CSS-tutorial
PPTX
Material design
PDF
Advanced CSS Troubleshooting
PPTX
Class vs. id
PPTX
Websites With Wordpress
PPTX
Building Webs Better
PPTX
Responsive web design with html5 and css3
PDF
PDF
Css 1. -_introduction_2010-11_
PPTX
PPTX
SilverlightDevIntro
PPT
Ppt ch05
PPTX
Cine scope
PPT
Ppt ch08
PPTX
Cascading style sheets - CSS
PPTX
Chapter 17: Responsive Web Design
PPT
Cascading Style Sheets By Mukesh
PPT
Css week10 2019 2020 for g10 by eng.osama ghandour
PPTX
Colors In CSS3
Basic-CSS-tutorial
Material design
Advanced CSS Troubleshooting
Class vs. id
Websites With Wordpress
Building Webs Better
Responsive web design with html5 and css3
Css 1. -_introduction_2010-11_
SilverlightDevIntro
Ppt ch05
Cine scope
Ppt ch08
Cascading style sheets - CSS
Chapter 17: Responsive Web Design
Cascading Style Sheets By Mukesh
Css week10 2019 2020 for g10 by eng.osama ghandour
Colors In CSS3
Ad

Similar to Blackboard DevCon 2011 - Performance Considerations for Custom Theme Development (20)

PDF
Highly Maintainable, Efficient, and Optimized CSS
PDF
Even faster web sites
PDF
CSS3: Are you experienced?
KEY
Ease into HTML5 and CSS3
KEY
HTML CSS & Javascript
PDF
Accelerated Stylesheets
PPTX
Optimizing Browser Rendering
KEY
Team styles
PDF
CSS Interview Questions for Fresher and Experience
PDF
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
PPTX
DevCon - Branding the LMS for your institution - Michael Garner, Blackboard
PDF
Basic-CSS-tutorial
PDF
Basic css-tutorial
PDF
CSS3: Ripe and Ready
PPTX
Hardcore CSS
PPT
Even faster web sites presentation 3
PPT
CSS Methodology
PDF
Big Design Conference: CSS3
PDF
Simply Responsive CSS3
PDF
CSS3: Ripe and Ready to Respond
Highly Maintainable, Efficient, and Optimized CSS
Even faster web sites
CSS3: Are you experienced?
Ease into HTML5 and CSS3
HTML CSS & Javascript
Accelerated Stylesheets
Optimizing Browser Rendering
Team styles
CSS Interview Questions for Fresher and Experience
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
DevCon - Branding the LMS for your institution - Michael Garner, Blackboard
Basic-CSS-tutorial
Basic css-tutorial
CSS3: Ripe and Ready
Hardcore CSS
Even faster web sites presentation 3
CSS Methodology
Big Design Conference: CSS3
Simply Responsive CSS3
CSS3: Ripe and Ready to Respond
Ad

More from Noriaki Tatsumi (11)

PDF
Feature drift monitoring as a service for machine learning models at scale
PPTX
GraphQL Summit 2019 - Configuration Driven Data as a Service Gateway with Gra...
PPTX
Voice Summit 2018 - Millions of Dollars in Helping Customers Through Searchin...
PPTX
Microservices, Continuous Delivery, and Elasticsearch at Capital One
PPTX
Operating a High Velocity Large Organization with Spring Cloud Microservices
PPTX
Application Performance Management
PPTX
Blackboard DevCon 2013 - Advanced Caching in Blackboard Learn Using Redis Bui...
PPTX
Blackboard DevCon 2013 - Hackathon
PPTX
Blackboard DevCon 2012 - Ensuring Code Quality
PPTX
Blackboard DevCon 2011 - Developing B2 for Performance and Scalability
PPTX
Blackboard DevCon 2012 - How to Turn on the Lights to Your Blackboard Learn E...
Feature drift monitoring as a service for machine learning models at scale
GraphQL Summit 2019 - Configuration Driven Data as a Service Gateway with Gra...
Voice Summit 2018 - Millions of Dollars in Helping Customers Through Searchin...
Microservices, Continuous Delivery, and Elasticsearch at Capital One
Operating a High Velocity Large Organization with Spring Cloud Microservices
Application Performance Management
Blackboard DevCon 2013 - Advanced Caching in Blackboard Learn Using Redis Bui...
Blackboard DevCon 2013 - Hackathon
Blackboard DevCon 2012 - Ensuring Code Quality
Blackboard DevCon 2011 - Developing B2 for Performance and Scalability
Blackboard DevCon 2012 - How to Turn on the Lights to Your Blackboard Learn E...

Recently uploaded (20)

PDF
Electronic commerce courselecture one. Pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
madgavkar20181017ppt McKinsey Presentation.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Modernizing your data center with Dell and AMD
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Advanced Soft Computing BINUS July 2025.pdf
PDF
GamePlan Trading System Review: Professional Trader's Honest Take
PPTX
Cloud computing and distributed systems.
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Electronic commerce courselecture one. Pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
madgavkar20181017ppt McKinsey Presentation.pdf
MYSQL Presentation for SQL database connectivity
Advanced methodologies resolving dimensionality complications for autism neur...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Review of recent advances in non-invasive hemoglobin estimation
Modernizing your data center with Dell and AMD
The AUB Centre for AI in Media Proposal.docx
Advanced Soft Computing BINUS July 2025.pdf
GamePlan Trading System Review: Professional Trader's Honest Take
Cloud computing and distributed systems.
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Diabetes mellitus diagnosis method based random forest with bat algorithm
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf

Blackboard DevCon 2011 - Performance Considerations for Custom Theme Development

  • 1. Performance Considerations for Custom Theme Development Kevin Weisser Noriaki Tatsumi
  • 2. Overview • Introduction to Themes • Blackboard Customization Approach • Introduction to CSS • CSS Performance Considerations • Image Performance Considerations • Front-end Analysis Tools
  • 5. Blackboard Custom Themes • Blackboard 9.x contains a flexible user interface which can be easily branded to have the look and feel of your institution • This can be accomplished by changing any of the following: – Themes/Color Palettes – Images – Customizing Login Page
  • 6. Blackboard’s Recommended Customization Approach 1. Access Learn as System Administrator 2. Navigate to System Admin tab 3. Click on Brands and Themes 4. Click on Theme and Palette Catalog 5. Click icon beside BbLearn Theme 6. Download the theme and save it to your desktop
  • 7. Blackboard’s Recommended Customization Approach 7. From Theme and Palette Catalog, select Create Theme 8. Provide the required fields (Theme Name and Reference Name) and click Browse My Computer 9. Select the recently downloaded theme 10. Click Submit 11. Open the file on the application server (Bb root- >content->vii->BBLEARN->branding->themes- >Your Theme Folder) in your favorite editor and proceed to make your changes
  • 9. Performance Stories From the Field • Customized login page loads slowly – Mitigated by limiting the requests to those used by the browser • Drag and drop functionality appears choppy – Mitigated by cleaning up poor performing CSS selectors • Pages load slowly in areas with limited connectivity – Mitigated by leveraging browser cache and ensuring that requests were compressed/minified
  • 10. Introduction to CSS • Imagine the following block: ... ul#summer-drinks li { font-weight: normal; font-size: 12px; color: black; } … <ul id="summer-drinks"> <li>Whiskey and Ginger Ale</li> <li>Wheat Beer</li> <li>Mint Julip</li> </ul> …
  • 11. Introduction to CSS • You want to designate a favorite: … ul#summer-drinks li { font-weight: normal; font-size: 12px; color: black; } .favorite { color: red; font-weight: bold; } … <ul id="summer-drinks“> <li class=“favorite”>Whiskey and Ginger Ale</li> <li>Wheat Beer</li> <li>Mint Julip</li> </ul>
  • 12. Introduction to CSS Selector Specificity * 0,0,0,0 li 0,0,0,1 ul li 0,0,0,2 ul ol li.red 0,0,1,3 li.red.level 0,0,2,1 #x34y 0,1,0,0 style=“display:none” 1,0,0,0
  • 13. Introduction to CSS • Higher specificity selectors are applied • Last style declared is applied when a tie exists • !important overrides the specificity
  • 15. CSS Performance Considerations • Anti-patterns – Unused Selectors – Universal Selectors – Over Qualified Selectors – :hover Pseudo Selector – Descendant Selectors – @import Usage • Optimization – Minification
  • 16. Unused Selectors • What are unused selectors? – Declared selectors which are not applied to any element of the DOM • How does this impact performance? – CSS is blocking – More Styles = Larger Files = Longer download times – More Styles = More Parsing – More Styles = More Evaluations
  • 17. Unused Selectors • Mitigation techniques – Split external CSS into smaller files grouped by related functionality/styles – When adding styles: • Be aware of already defined styles • Be aware of selector specificity • Be aware of which attributes are available various DOM elements
  • 18. Universal Selector • What is a universal selector? – Universal selectors are denoted by the ‘*’ symbol • Example: .itemGallery *{zoom:1;} • How does this impact performance? – Right to left evaluation – Reflow in interactive pages • Mitigation techniques – Be specific
  • 21. Over Qualified Selectors • What is an over qualified selector? – ID selectors denoted by ‘#’ that has a preceding element tag • Example: div#lightboxContent h2{position:relative}; – Class selectors denoted by ‘.’ that has a preceding element tag • Example: div.stopped p img{background:#fff -180px;}
  • 22. Over Qualified Selectors • How does this impact performance – One more comparison is required during evaluation • Mitigation techniques – Don’t specify the element before the ID/Class selector – IDs should be unique – Classes can be unique
  • 23. :hover Psuedo Selector • What is the :hover pseudo selector? – Elements that specify a different style when the mouse hovers over the element element • Example: – tr.S {background-color:#000000} – tr.S:hover {background-color:#FFFFFF} • How does this impact performance? – IE degradation on non-anchor elements – IE9 may correct this problem
  • 24. :hover Psuedo Selector • Mitigation techniques <style type="text/css"> tr.S {background-color:#000000} tr.S:hover {background-color:#FFFFFF} </style> <table> <tr class="S"> <td>foo bar</td> </tr> </table> <table> <tr style="background-color:#FFFFFF" onmouseover="this.style.backgroundColor='#000000'" onmouseout="this.style.backgroundColor='#FFFFFF'"> <td>foo bar</td> </tr> </table>
  • 25. Descendant Selector • What are descendant selectors? – Descendant selectors filter based criteria • Example: treehead treerow treecell {…} • How does this impact performance? – More evaluations
  • 26. Descendant Selector • Mitigation techniques – Use of child selectors prevent DOM traversal • treehead > treerow > treecell {…} – Class selector is preferred • .treecell-header {…} – Use caution this approach can reduce reusability
  • 27. @import Usage • What does @import do? – Allows stylesheets to include other stylesheets • How does this impact performance? – Set number of connections available to request resources – Eliminates parallelism • Mitigation techniques – <link> tags alllow for parallel CSS download
  • 28. CSS Minification • Process which removes comments, return characters, and unnecessary white space • Sacrifices readability for smaller file sizes • Free tools available (ex. YUICompressor) • Themes uploaded from the System Admin tab are immediately compressed
  • 30. Image Performance Considerations • Anti-patterns – Inappropriate image format – Unreachable images – Unused Images
  • 31. Inappropriate Image Format: JPEG • Recommended for realistic pictures with smooth gradients and color tones • Not lossless • Sacrifice compression for resolution • JPEGTran optimization
  • 32. Inappropriate Image Format: PNG and GIF • PNG and GIF should be used for solid color images (charts or logos) • Use PNG over GIF unless – Image contains animation – Image is extremely small (a few hundred bytes), because GIF tends to be smaller than PNG • PNG is superior because – Copyright free – More efficient compression – Stores all bit depths • OptiPNG, PNGCrush for optimization
  • 33. Unreachable Images • Make sure path to image is correct • 404 status on any request is a wasted request – Request may be blocking – Reduces parallelism • Verify all images are reachable via browser profile tools, such as Firebug
  • 34. Unused Images • Request to unused images creates unnecessary delays • Longer download times • Reduced parallelism
  • 35. Front End Analysis Tools • Firebug (http://getfirebug.com/) – Inspect HTML and modify style/layout in real-time – Debug JavaScript – Analyze network usage and performance • PageSpeed (http://code.google.com/speed/page-speed/) – Optimize with Web performance best practices – Rules of particular interest • Avoid bad requests • Avoid CSS @import • Combine external CSS • Minify CSS • Optimize Images • Use efficient CSS Selectors
  • 37. Please provide feedback for this session by emailing [email protected]. The title of this session is: Performance Considerations for Custom Theme (CSS) Development

Editor's Notes

  • #3: Goal is to prevent the user from getting themselves into trouble
  • #4: Look familiar? What’s a theme?
  • #6: ThemeUnifying idea that is a recurrent elementIncludes layout, color, fonts, navigation, and buttonsColor PaletteExtensions to the themeSets color schemes for the entire siteOverride any color specifications found in themePoll audience
  • #7: Template helps to avoid most of the common problems
  • #9: Demonstration on how to disable the “Manage My Announcements Module”Disable the Manage My Announcements Module Settings image .edit_controls img[alt=&quot;Manage My Announcements Module Settings&quot;]{display:none;}
  • #10: The template isn’t enough, one can still get themselves into trouble when not following best practices.
  • #11: http://css-tricks.com/specifics-on-css-specificity/What does the C stand for?Browser parses the CSS fileSome optimized browsers group selectors into several MapsID MapClass MapTag MapMiscellaneous MapRight to Left evaluationIf a match is found, the CSS Engine must determine the specificity of the selector before applying the declaration blockIf a mismatch is found, the CSS Engine moves to the next selector to evaluateAll selectors in the file are evaluated
  • #12: What font color will your favorite drink be?
  • #13: The CSS Specification calculates specificity as follows:A equals 1 if the declaration is from is a &apos;style&apos; attribute rather than a rule with a selector, 0 otherwiseB equals the number of ID attributesC equals the number classes, pseudo-classes, and attributes D equals the number of elements and pseudo-elementsConcatenating the four numbers A-B-C-D gives the specificity
  • #14: ul#summer-drinks li has specificity of 0,1,0,2.favorite has specifity 0,0,1,0
  • #15: Some repeated pattern of action, process or structure that initially appears to be beneficial, but ultimately produces more bad consequences than beneficial resultsA refactored solution exists that is clearly documented, proven in actual practice and repeatable. -Definition from WikipediaExperiment showing load times across different browsers when different selectors are used (~6,000 DOM Elements)
  • #17: http://www.w3.org/TR/CSS21/cascade.html#specificityDOM either because the elements/classes/styles don’t exist or another higher priority style has been declared
  • #19: http://webworksconsultant.com/frontend/what-is-wrong-with-universal-css-selector/
  • #20: Create replication
  • #21: Create replication
  • #23: DemoFind a complex page (Course module?)Apply changeset 766696
  • #33: http://www.slideshare.net/stoyan/high-performance-web-pages-20-new-best-practices
  • #36: Call Out Rules