This file contains 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 if ( has_post_thumbnail() ) : ?> | |
<div class="featured-img"> | |
<a href="<?php the_permalink(); ?>" title=""><?php the_post_thumbnail( 'full', array('class' => 'img-responsive')); ?></a> | |
</div> | |
<?php endif; ?> |
This file contains 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
I have a list of elements: | |
<ul> | |
<li>One</li> | |
<li>Two</li> | |
<li>Three</li> | |
<li>Four</li> | |
<li>Five</li> | |
</ul> | |
And styled like this: |
This file contains 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
<div class=“image_frame image_item scale-with-grid aligncenter has_border“> | |
<div class=“image_wrapper“> | |
<a href=“#“> | |
<div class=“mask“></div> | |
<img class=“scale-with-grid“ src=“/wp-content/uploads/2016/04/CONDOS-1.jpg“ alt=“beauty_portfolio_1“ width=“1200“ height=“800“> | |
</a> | |
<div class=“image_links double“> | |
<a href=“/wp-content/uploads/2016/04/CONDOS-1.jpg“ class=“zoom“ rel=“prettyphoto“><i class=“icon-search“></i></a> | |
<a href=“http://www.exclusivenewlaunch.com/property-type/landed-housing/“ class=“link“><i class=“icon-link“></i></a> | |
</div> |
This file contains 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
.admin-bar .navbar-fixed-top { | |
margin-top: 30px; | |
} | |
@media (max-width: 800px) { | |
.admin-bar .navbar-fixed-top { | |
margin-top: 46px; | |
} | |
} |
This file contains 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
// Use shortcode in a PHP file (outside the post editor). | |
echo do_shortcode( '' ); | |
1 | |
2 | |
// In case there is opening and closing shortcode. | |
echo do_shortcode( '[iscorrect]' . $text_to_be_wrapped_in_shortcode . '[/iscorrect]' ); | |
1 | |
2 | |
// Enable the use of shortcodes in text widgets. | |
add_filter( 'widget_text', 'do_shortcode' ); |
This file contains 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
img { | |
margin: 0 auto; | |
border-radius: 50%; | |
} | |
h5 { | |
padding-bottom: 2rem; | |
position: relative; | |
&:after { |