- http://stackoverflow.com/q/49716
- http://stackoverflow.com/q/90661
- http://stackoverflow.com/q/422745
- http://stackoverflow.com/q/807120
- http://stackoverflow.com/q/1235410
- http://stackoverflow.com/q/2094306
- http://stackoverflow.com/q/2167331
- http://stackoverflow.com/q/2477961
- http://stackoverflow.com/q/2909587
- http://stackoverflow.com/q/3269066
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
<div class="product-thumbnail-container clr"> | |
<div class="product-thumbnail-wrap"> | |
<img data-big="<?php echo $url ?>" title="<?php the_field('colour'); ?>" tray="A.1.C" class="product-thumb product-thumb-active" src="<?php the_field('featured_image_a_thumbnail'); ?>" /> | |
<div class="product-thumbnail-name"><?php the_field('colour'); ?></div> | |
</div> | |
<?php if(get_field('featured_image_b')) { ?> | |
<div class="product-thumbnail-wrap"> | |
<img data-big="<?php the_field('featured_image_b'); ?>" tray="B.1.B" title="<?php the_field('featured_image_b_thumbnail_name'); ?>" class="product-thumb" src="<?php the_field('featured_image_b_thumbnail'); ?>" /> | |
<div class="product-thumbnail-name"><?php the_field('featured_image_b_thumbnail_name'); ?></div> |
- http://stackoverflow.com/q/5864
- http://stackoverflow.com/q/49716
- http://stackoverflow.com/q/74296
- http://stackoverflow.com/q/87896
- http://stackoverflow.com/q/90661
- http://stackoverflow.com/q/112974
- http://stackoverflow.com/q/115586
- http://stackoverflow.com/q/320676
- http://stackoverflow.com/q/391034
- http://stackoverflow.com/q/422745
In the following snippet, I want the icons to be displayed on either side of the text. As you can see, it isn't working very well. As well, everything below .container
is loaded through a WordPress plugin, so it cannot be altered.
What am I doing wrong, and how can I display the icons on either side of the text?
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
<div class="container" style="width: 40%; margin: 0 auto;"> | |
<a href="https://www.instagram.com/idleslidegloves/" style="float: left;"><img src="http://idleslidegloves.com/wp-content/uploads/2016/01/instagram-22.png" alt=""></a> | |
<a href="https://www.facebook.com/idleslidegloves/" style="float: right;"><img src="http://idleslidegloves.com/wp-content/uploads/2016/01/facebook-7-22.png" alt=""></a> | |
</div> |
<h3>
<a href="https://www.facebook.com/idleslidegloves/"><img src="http://idleslidegloves.com/wp-content/uploads/2016/01/facebook-7-22.png" alt=""></a>
<a href="https://www.instagram.com/idleslidegloves/" style="float: right;"><img src="http://idleslidegloves.com/wp-content/uploads/2016/01/instagram-22.png" alt=""></a>
Subscribe and we'll let you know when our website is up and running
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
// ==UserScript== | |
// @name Hide Jobs | |
// @namespace http://github.com/Tiny-Giant | |
// @version 1.0.0.1 | |
// @description Hides references to Stack Overflow Jobs | |
// @author @TinyGiant | |
// @include /https?:\/\/(meta\.)?stackoverflow\.com/.*/ | |
// @grant none | |
// ==/UserScript== | |
/* jshint -W097 */ |