This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fgjgjghj |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .goods-catalog-container { | |
| padding-top: 30px; | |
| padding-bottom: 30px;} | |
| .goods-catalog-container a { | |
| color: #666;} | |
| .goods-catalog-container a:hover { | |
| text-decoration: none;} | |
| .goods-catalog-container .goods-item-title a { | |
| color: #666; | |
| text-decoration: none;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Вывод частей: | |
| <?php get_sidebar(); ?> | |
| <?php get_header(); ?> | |
| <?php get_footer(); ?> | |
| Пути до файлов: | |
| <?php echo get_template_directory_uri(); ?>/ | |
| <?php echo get_stylesheet_directory_uri(); ?>/ | |
| Вывод записей: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Деактивирует родительские css стили | |
| */ | |
| function sf_child_theme_dequeue_style() { | |
| wp_dequeue_style( 'storefront-style' ); | |
| wp_dequeue_style( 'storefront-woocommerce-style' ); | |
| } | |
| /** | |
| * Отключает дефолтные интейновые css стили |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HTML: | |
| <div class="wrapper"> | |
| <div class="tabs"> | |
| <span class="tab">Вкладка 1</span> | |
| <span class="tab">Вкладка 2</span> | |
| <span class="tab">Вкладка 3</span> | |
| </div> | |
| <div class="tab_content"> | |
| <div class="tab_item">Содержимое 1</div> | |
| <div class="tab_item">Содержимое 2</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function wResize() { | |
| $("header").css("height", $(window).height() | |
| }); | |
| wResize(); | |
| $("window").resize(function() { | |
| wResize() | |
| }); |