Linkyboy

Header CSS

Apr 16th, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <style type="text/css">
  2.  
  3. /*Hiding our Enjin Bar*/
  4. #enjin-bar{
  5. display:none !important;
  6. }
  7.  
  8. /*Setting our page to full width by default*/
  9.  
  10. #page{
  11. width:100% !important;
  12. max-width:none !important;
  13. }
  14.  
  15. /*Remove default padding from html modules*/
  16. .m_html{
  17. padding:0px !important;
  18. }
  19.  
  20. /*Remove default container spacer from our header modules*/
  21. #section-header .container_spacer{
  22. display:none !important;
  23. }
  24.  
  25. /*Set Header width, left empty because we want it to be full width*/
  26.  
  27. #site-body>div:nth-child(1){
  28.  
  29. }
  30.  
  31. /*Set Body width*/
  32.  
  33. #site-body>div:nth-child(2){
  34. width:1060px;
  35. margin:0 auto;
  36. }
  37.  
  38. /*Set Footer width*/
  39. #site-body>div:nth-child(3){
  40. width:1060px;
  41. margin:0 auto;
  42. }
  43.  
  44. /*This is our simple example banner, make this anything you want at 100% width*/
  45.  
  46. .full_width{
  47. background-color:#222;
  48. min-height:250px;
  49. border-top:0 px solid red;
  50. border-bottom:0px #f53b5d;
  51. width:100%;
  52. }
  53.  
  54. </style>
  55.  
  56. <div class="full_width">
  57. <img src="http://i.imgur.com/CKfv7kE.png"
  58.  
  59. </div>
Advertisement
Add Comment
Please, Sign In to add comment