Css trick - Text at left side banner


SUBMITTED BY: Howtoforall

DATE: June 9, 2016, 12:45 p.m.

UPDATED: June 9, 2016, 3:40 p.m.

FORMAT: CSS

SIZE: 801 Bytes

HITS: 1926

  1. css Div container with text on left side of a standaard banner
  2. example/ demo http://www.onlinereviewsforyou.tumblr.com/PTP%20TRICK%20PAGE
  3. <<<<<<<<<<<<<< THIS PART INSIDE HEAD >>>>>>>>>>>>
  4. <style>
  5. .post-container {
  6. margin: 10px 0 0 0;
  7. overflow: auto
  8. }
  9. .post-thumb {
  10. float: right
  11. }
  12. .post-thumb img {
  13. display: block
  14. }
  15. .post-content {
  16. margin-left: 0px
  17. }
  18. </style>
  19. <<<<<<<<<<<<<<<THIS PART INSIDE BODY >>>>>>>>>>>>>>>>>>>>>>>>>>
  20. <div class="post-container">
  21. <div class="post-thumb"><a href="http://www.DESTINATION_LINK_HERE" target="_blank">
  22. <img src="BANNER LINK HERE (THE IMAGE)" border="0" width="468" height="60" ></a></div>
  23. <div class="post-content">
  24. TEXT LINE 1<br>TEXT LINE 2<br>TEXT LINE 3</div></div>

comments powered by Disqus