Advertisement
MikkoDC

CM - Footer Update

Aug 14th, 2023
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. Footer.php
  2. <!-- .container -->
  3. <div class="footer-partners">
  4. <div class="footer-widgets">
  5. <?php if ( is_active_sidebar( 'footer-partners' ) ) : ?>
  6. <?php dynamic_sidebar( 'footer-partners' ); ?>
  7. <?php endif; ?>
  8. </div>
  9. </div><!-- .footer-partners -->
  10.  
  11.  
  12. style.css
  13. /* --------------------------------------------------------------
  14. Footer
  15. -------------------------------------------------------------- */
  16. .site-footer {
  17. padding: 0;
  18. font-size: 17px;
  19. line-height: 1.5;
  20. display: block;
  21. width: 100%;
  22. position: relative;
  23. z-index: 1;
  24. overflow: hidden;
  25. background: #f2f2f2;
  26. color: #272c30;
  27. }
  28.  
  29. .site-footer a {
  30. color: #0072e5;
  31. }
  32.  
  33. .site-footer a:hover {
  34. color: #272c30;
  35. text-decoration: underline;
  36. }
  37. .site-footer .footer-partners {
  38. padding: 29px 0;
  39. background-color: #fff;
  40. position: relative;
  41. z-index: 2;
  42. }
  43. .footer-partners .footer-widgets {
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. gap: 50px;
  48. margin: 0 auto;
  49. }
  50. .footer-partners .footer-widgets section + section {
  51. margin-top: 0;
  52. }
  53. .footer-partners section img {
  54. width: auto;
  55. max-height: 40px;
  56. }
  57.  
  58. @media (max-width: 1024px){
  59. footer.site-footer .footer-partners {
  60. order: 0;
  61. }
  62. footer.site-footer .container {
  63. order: 3;
  64. }
  65. footer.site-footer .social-links {
  66. order: 2;
  67. }
  68. .footer-partners .footer-widgets {
  69. gap: 10px;
  70. padding-top: 0;
  71. }
  72. .footer-partners section img {
  73. max-height: 30px;
  74. }
  75. }
  76.  
  77. @media (max-width: 599px) {
  78. footer.site-footer .footer-partners .footer-widgets {
  79. padding-top: 0px;
  80. }
  81. }
  82.  
  83. functions.php
  84.  
  85. register_sidebar(
  86. array(
  87. 'name' => esc_html__( 'Footer Parners', 'cloud-mellow' ),
  88. 'id' => 'footer-partners',
  89. 'description' => esc_html__( 'Add widgets here.', 'cloud-mellow' ),
  90. 'before_widget' => '<section id="%1$s" class="widget %2$s">',
  91. 'after_widget' => '</section>',
  92. 'before_title' => '<h2 class="widget-title">',
  93. 'after_title' => '</h2>',
  94. )
  95. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement