By editor, 20 March, 2016 Drupal 8 Theming with Twig Tags Drupal 8 Twig Theming Print : {{ variable_to_print }} Code : {% codes %} Comment : {# Comments #}
By editor, 4 March, 2016 Theming tips for Bootstrap framework Tags Theming JavaScript CSS Modal dialogue box ( bootstrap / jquery) 1. Remobe the gray background of modal dialog box (modal-backdrop) .modal-backdrop { background-color: transparent; }
By editor, 16 February, 2016 Create and Apply Patches using GIT DIFF and APPLY Tags Shell Git Create Patch: git diff PATH/TO/SOURCE.php > PATH/SAVE_patch.diff Apply patch git apply PATH/SAVE_patch.diff
By editor, 9 February, 2016 Add a solid color zone at the top (or anyware) of the page Tags Theming CSS .main-container { &:before { content: ''; position: absolute; height: 500px; background: red; width: 100%; left: 0; } } ALSO: Add z-index: -1; if this hide some thing .main-container is a div just after the body
By editor, 9 February, 2016 Horizontal Align Tags Theming CSS 1. Text-Align: Center; div{ text-align: center; } 2. Margin: 0 auto;