Are you looking for the latest documentation?

Documentation for Acquia Cohesion V6.0 onwards has moved to https://cohesiondocs.acquia.com

    Customising your AMP sub-theme

    Now that you’ve set up AMP and created a sub-theme, you’ll need to create CSS to style your pages. In this guide, we'll cover the following topics:

    Limitations

    AMP (Accelerated Mobile Pages) are a stripped down form of HTML, designed to be lightweight and serve mobile content much faster than regular pages. Naturally, this creates limitations to ensure fast delivery of content.

    No Javascript

    Custom JS and additional libraries can add a lot of weight to page load times, so AMP pages do not support these.

    CSS size

    Your AMP sub-theme CSS styles (which are actually held in a Drupal html.twig file) cannot exceed 50kb. This roughly equates to 3000 lines of uncompressed CSS. See recommended approach to CSS for more info.

    Disallowed CSS

    Banned style Description
    !important qualifier This is a necessary requirement to enable AMP to enforce its element sizing rules.
    <link rel=”stylesheet”> External stylesheets cannot be referenced, with the exception of custom fonts
    -amp- class and i-amp- tag names Styles may not reference CSS selectors for -amp- classes and i-amp tags. These are reserved for internal use by the AMP runtime.
    transition property
    animation @keyframes
    Only GPU-accelerated properties (currently opacity and transform) can be transitioned/animated on AMP pages.
    overflow, overflow-x and overflow-y Overflow properties can’t be styled as auto or scroll - as such no user-defined elements in AMP pages can have a scrollbar.

    Custom fonts

    Any imported fonts you’ve specified in DX8 > Website settings > Font libraries will be available to your AMP sub-theme to use in CSS.

    The following origins are whitelisted by AMP:

    Uploaded font packages will not work unless you create @font-face declarations for these fonts in your sub-theme CSS file. These can be copied from the sites/default/files/cohesion/styles/base/stylesheet.min.css file.

    This also applies to icon fonts specified in DX8 > Website settings > Icon libraries.

    Make sure that any custom font you use is as lightweight as possible, as this will impact page load time.

    Time overhead

    DX8 provides significant time and efficiency gains when theming regular Drupal pages, because the CSS is generated through our innovative style builder system. This efficiency is lost with theming AMP pages because CSS has to be generated manually.

    Useful modules

    Module Description
    Field Formatter Class Allows classes to be added to the outer wrapper of any Drupal field display, which provides more control for theming.
    Title Field for Manage Display Creates a Title field in content types that shows up in the Manage display tab. Allows more control over page title placement.
    Breadcrumb Extra Field Creates a Breadcrumb field in content types that shows up in the Manage display tab. Allows more control over breadcrumb placement.
    Context (and Context UI submodule) In combination with context visibility settings on DX8 elements, you can create AMP-alternative content. E.g. replacing Picture with Image.

    Identifying content for AMP optimisation

    Initially your AMP pages will look very different to regular pages as no styles will be applied - these have to be generated manually.

    We recommend you identify a content type that is most likely to benefit from AMP optimisation (eg. blog) as a starting point. You can then expand to other content types as necessary, providing you do not exceed the 50kb CSS limit.

    Block and content type optimisation

    Once you’ve identified a content type to work with, you may need to reorganise your block and content type field placement to provide the best user experience. DX8 templated content (master templates, content templates etc) are not supported with AMP themes.

    Select the correct tab before making changes to block or content type field layout, so that other displays are unaffected. For blocks this is your sub-theme, for content types it will be AMP.

    Make sure any fields on your content type are using the correct formatter. For example, Image needs to be changed to AMP Image.

    See the useful modules section for some community modules that will help with this process.

    Recommended approach to CSS

    To keep your theme CSS as light as possible, we recommend using a CSS preprocessor such as SCSS. By setting the SCSS output style to compressed, it will minify the CSS into a single line and provide room for extra CSS.

    Best practice

    • Keep CSS selectors as short as possible - single-level element (e.g. H1) or class (e.g. .myclass) selectors are ideal.

    • Never use ID selectors (e.g. #myid) as these are much harder to override.

    • If multi-level selectors are necessary, limit to no more than three levels (e.g. ul li a) - if possible add classes to these elements to give more control.

    • Don’t use an autoprefixer - whilst this is normally recommended for legacy browser support, AMP is a modern development framework that targets mobile devices that don’t require autoprefixing. It will also reduce the amount of CSS generated.

    • Keep it simple - your AMP pages won’t always look the same as your regular pages, given that page load speed is the priority.

    CSS structure

    Whilst the CSS you define for your AMP sub-theme will differ from project to project, we recommend using the following outline.

    CSS section Description
    @font-face declarations Always put your font declarations first, so that you can specify font-family settings for any following selectors.
    DX8 grid styles As no external styles are loaded, you will need to duplicate DX8’s grid CSS to implement a responsive layout. These include coh-row, coh-row-inner, coh-column and coh-col-* classes and associated styles.
    DX8 base styles Some styles that you’ve defined through DX8 base styles may need duplicating. For example heading, list and paragraph styles.
    Drupal core styles you may need to duplicate some of Drupal's core CSS. Examples include hidden, visually-hidden, focusable and invisible.
    Drupal element styles CSS that targets Drupal elements, blocks or fields. This would include styles for any custom classes you’ve added to content type fields.
    DX8 custom styles Some styles that you’ve defined through DX8 custom styles may need duplicating.
    DX8 inline element styles Styles that you’ve applied directly to DX8 elements through the Styles tab.
    DX8 knowledge base icon

    Frequently asked questions

    Get instant answers to common questions. Available online 24/7.

    Find answers

    Raise a ticket icon

    Raise a support ticket

    To raise a ticket, sign into Acquia Cloud and select Help in the top menu.

    Raise support ticket

    Acquia

    Copyright © 2020 Acquia, Inc. All Rights Reserved. Drupal is a registered trademark of Dries Buytaert.