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
.sherdavCompany | |
width: 50% | |
height: 50% | |
overflow: auto | |
margin: auto | |
position: absolute | |
top: 0 | |
left: 0 | |
bottom: 0 | |
right: 0 |
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
npm i | |
npm i -g bower | |
npm install --save bourbon | |
gulp |
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="container"> | |
<div class="row"> | |
<div class="col-sm-6 vertical-center"> | |
<img src="https://www.google.com/textinputassistant/tia.png" alt="" /> | |
</div> | |
<div class="col-sm-6">foo<br/>bar<br/>foo<br/>bar<br/>foo<br/>bar<br/></div> | |
</div> | |
</div> | |
html,body,.container { |
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 $my_query = new WP_Query('page_id=87'); | |
while ($my_query->have_posts()) : $my_query->the_post(); | |
$do_not_duplicate = $post->ID;?> | |
<div class="entry"> | |
<?php the_content('read more »'); ?> | |
</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
<?php if(ICL_LANGUAGE_CODE=='en'): ?> | |
---do something--- | |
<?php elseif(ICL_LANGUAGE_CODE=='it'): ?> | |
---do something else-- | |
<?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
https://atom.io/packages/advanced-custom-fields-snippets |
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="col-sm-6"> | |
<a href="#" class="thumbnail"> | |
<div class="caption"> | |
title<br/>3 x bekeken | |
</div> | |
<div class="image"> | |
<img src="" class="img img-responsive full-width" /> | |
</div> | |
</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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Css aspect ratio to have images of same height</title> | |
<meta name="description" content="Css aspect ratio to have images of same height"> | |
<!-- include bootstrap --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> | |
<script> |
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
1) Jquery Solution: | |
$(".thumbnail").height(Math.max.apply(null, $(".thumbnail").map(function() { return $(this).height(); }))); | |
2) CSS Solution: | |
<div class="flex-row row"> | |
<div class="col-sm-6 col-md-4"> | |
<div class="thumbnail"> | |
<img src="..." alt="..."> | |
<div class="caption"> | |
<h3>Thumbnail label</h3> |