Cristian Horta
Web Project/Operations Manager, CWO
chorta@ucsd.edu



•   RWD, how does it work? (media queries)
•   UI elements in our templates, how they are responsive
•   Responsive Image rotator
•   Fluid images fix for images with fixed width and height
•   Converting sites in the CMS to be responsive
•   Pros and Cons of RWD
RESPONSIVE
WEB DESIGN IS
AWESOME
But,
How does it
work?
Fluid Layouts       Media Queries


                +     CSS
                     @media
viewport: 1024px




.HTML                      .CSS
viewport: 768px




.HTML                     .CSS
Media Queries

body {
     background-color: #FFF;
     color: #333;
    }


@media screen and (max-width: 768px) {

    body {
     background-color: #333;
     color: #FFF;
    }

}
UI elements in our
templates, how they are
       responsive
Responsive Image rotator
Simple, Easy to Read Markup
Image and Caption
Image and Caption + Link
Just Images
Don’t need the controls?
No Problem!
Fluid images fix for images with fixed
                      width and height
Fluid images fix for images with fixed
                      width and height



                 #tdr_content_content img {
                       max-width: 100% !important;
                       height: auto !important;
                      }
Converting sites in the CMS to be responsive


•   It’s an opportunity to clean up the site
•   Identify problem areas, such as:
    Tables, Iframes, extraneous code/components
•   Convert image rotators to use new markup
•   Replace headers in QA, Test and Release

Responsive Design - Campus Web Developers

Editor's Notes

  • #2 Topics
  • #4 Well, it’s actually very simple.
  • #5 Next: Example
  • #14 Images and Caption