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
| Trong trang admin của contact form 7, đây là ví dụ cho cách sử dụng | |
| <div class="smf-data-field"> | |
| <div class="smf-field-row"> | |
| [text* your-family-name placeholder "family name"] | |
| [text* your-first-name placeholder "first name"] | |
| </div> | |
| <span class="custom-error-message your-first-name"></span> | |
| </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
| <a href="#" class="hover-underline active">Hover me</a> | |
| <a href="#" class="hover-underline">Hover me</a> |
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
| <a href="#" class="hover-underline active">Hover me. I am actived</a> | |
| <a href="#" class="hover-underline">Hover me</a> |
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
| <h1 class="typing-text"> | |
| Welcome to Algae | |
| </h1> |
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 setup() { | |
| add_theme_support( 'title-tag' ); | |
| add_theme_support( 'post-thumbnails' ); | |
| if ( function_exists( 'add_image_size' ) ) { | |
| add_image_size('thumb-347x194', 347, 194, true); | |
| } | |
| } |
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 | |
| $image = get_field("list_img"); | |
| $size = "thumb-347x194"; // (thumbnail, medium, large, full or custom size) | |
| if ($image) { | |
| echo wp_get_attachment_image($image, $size, false, [ | |
| "class" => "card-img-top", | |
| ]); | |
| } else { | |
| ?> | |
| <img src="<?= esc_url( |
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
| body { | |
| background-image: linear-gradient( | |
| transparent 11px, | |
| #fff 12px, | |
| transparent 12px | |
| ), | |
| linear-gradient(90deg, #c6d8bf 11px, #fff 12px, transparent 12px); | |
| background-size: 100% 12px, 12px 100%; | |
| } |
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
| @keyframes text-animation { | |
| 0% { | |
| opacity: 0; | |
| transform: translateX(-50%); | |
| } | |
| 100% { | |
| opacity: 1; | |
| transform: translateX(0); | |
| } |