I am having trouble putting these 2 images side by side:
<img src="<?php echo get_template_directory_uri(); ?>/images/paypal.gif"/>
<img src="<?php echo get_template_directory_uri(); ?>/images/Steps2.png"/>
Printable View
I am having trouble putting these 2 images side by side:
<img src="<?php echo get_template_directory_uri(); ?>/images/paypal.gif"/>
<img src="<?php echo get_template_directory_uri(); ?>/images/Steps2.png"/>
HTML Code:<img class="floatLeft" src="<?php echo get_template_directory_uri(); ?>/images/paypal.gif"/>
<img class="floatLeft" src="<?php echo get_template_directory_uri(); ?>/images/Steps2.png"/>
This topic relates more to the HTML or CSS categories...HTML Code:<style>
.floatLeft {
float: left;
}
</style>