Skip to content

Commit

Permalink
Minor fixes to responsivity
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannimanetti11 committed Feb 1, 2024
1 parent 3bce3d1 commit 4b09652
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
1 change: 1 addition & 0 deletions footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
</div>
</footer>
<?php wp_footer(); ?>

</body>
</html>
36 changes: 35 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,10 @@ header {
transition: transform 0.7s ease, opacity 0.7s ease;
}

#menu-icon-container {
display: none;
}


#mailingList-popup, #login-popup, #signup-popup, #contact-popup {
margin-top: 55px;
Expand Down Expand Up @@ -2420,6 +2424,10 @@ footer {

@media only screen and (max-width: 360px) {

#menu-icon-container {
display: block;
}

.plant-details {
flex-direction: column;
}
Expand All @@ -2445,6 +2453,10 @@ footer {

@media only screen and (max-width: 768px) {

#menu-icon-container {
display: block;
}

.post-table thead {
display: none;
}
Expand Down Expand Up @@ -2617,7 +2629,6 @@ footer {

.mobileMenu svg {
display: block;
transition: all .3s ease;
margin-top: -30px;
color: #fff;
}
Expand Down Expand Up @@ -2904,8 +2915,31 @@ footer {

}

@media only screen and (min-width: 769px) and (max-width: 805px) {
.logo h1, .logo span {
font-size: 18px !important;
}
}

@media only screen and (min-width: 769px) and (max-width: 992px) {

#subscribe-form #nome, #subscribe-form #cognome {
width: 100%;
}

#subscribe-form #nome {
margin-right: 0;
margin-bottom: 15px;
}

#menu-icon-container {
display: none;
}

.mobileMenu svg {
color: #fff;
}

.about-container {
padding: 50px;
}
Expand Down

0 comments on commit 4b09652

Please sign in to comment.