
-
AuthorPosts
-
February 17, 2025 at 3:12 am #1477225
Hi there
I have created a 3 column footer – the Widget titles are meant to have have white border top and bottom but they are not displaying on desktop but are displaying on mobile.
I also have the first column as a Mail chimp form – however the order of form fields is incorrect – should be 1) Email address, 2 Frist name, 3) Last Name. Is incorrect on both mobile and desktop (showing email, last name then first name). Also how can I change the font size of the text in each form field to be smaller – Ive adjusted the form in Mailchimp but is still showing larger.
How can I reduce the Gap top and bottom of entire footer section inner padding?
How can I reduce the gap between columns when they are stacked on mobile?
February 18, 2025 at 10:25 am #1477315Hey xfacta,
Please try to stick to one problem per thread in the future, let’s pick your problems off one by one for now. The CSS applying to the widget titles on mobile looks to be wrapped in multiple media queries, maybe you have left one or more queries open? All curly brackets which are opened need to be closed as well, otherwise the queries will always be open for any CSS you add after them.
Best regards,
RikardFebruary 18, 2025 at 9:16 pm #1477349Hey there
Sorry I thought they were all footer related so thats why I did them all – but note taken for future :-)
Also dont worry about the “How can I reduce the Gap top and bottom of entire footer section inner padding?” I have found some code to fix that myself now. Which also seems to have helped with this questio “How can I reduce the gap between columns when they are stacked on mobile?” too.
I cant see any issues – here is the quick css:
/* remove the meta container from blog page*/
.html_elegant-blog #top .post-entry .post-meta-infos {
display: none;
}
/* remove the category displaying on blog page*/
.html_elegant-blog #top .avia-content-slider .blog-categories {
display: none;
}/* Remove Product sorting from Product pages*/
.product-sorting { display: none !important;
}/* Product price*/
#top .price, #top .price span, #top del, #top ins{
display: inline;
text-decoration: none;
font-size: 17px;
line-height: 45px;
font-weight: 600;
letter-spacing: 0.5px;
}.image-overlay {background: none;
}
.av_font_icon.av-icon-style-border .av-icon-char {
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
border-radius: 1000px;
border-width: 2px;
border-style: solid;
display: block;
margin: 0 auto;
padding: 25px;
color: inherit;
border-color: inherit;
position: relative;
}/* Centre 5 stars in testimonials*/
.avia-testimonial p[style*=”center”] {
margin-top: 0;
display: inline-block;
}.avia-testimonial-meta-mini {
text-align: center !important;
}/* Reduce gap above header on events calendar – what’s on page*/
.tribe-common–breakpoint-medium.tribe-events .tribe-events-l-container {
padding-top: 0;
}
.tribe-events .tribe-events-l-container {
padding-top: 0;
}#top #reviews h2{
font:”HelveticaNeue”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
line-height: 25px;
font-weight: normal;
text-transform: none;
letter-spacing: 1px;
}.big-preview.single-big {
text-align: center; }.big-preview.single-big a {
display: inline-block; }.woocommerce-review__published-date {
display: none !important;
}.html_elegant-blog .avia-content-slider .slide-meta {
display: none !important;
}/* IconList space-*/
#top .av-iconlist-small li {
margin: 10px 0;
}/*reduce the gap between Icon list and the text block above it*/
.avia-icon-list-container {
margin: 10px 0 30px 0;
}/*reduce the gap between text box and colour section*/
.content {
padding-top: 22px;
padding-bottom: 20px;
}@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
/* Social icons 5 column display on mobile to stop overlaping */
@media only screen and (max-width: 767px) {
.flex_column.av-1wutg6-75a2def9a5e4dfdd6a7dc4b173f7d740 {
display: none;
}
.responsive #top.page-id-734 #wrap_all .content .entry-content-wrapper .flex_column.av_one_fifth {
width: 33%;
}/* increase width of testimonial slider on mobile */
.responsive #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial {
padding: 0;
}
#top .av-large-testimonial-slider .avia-testimonial-meta .avia-testimonial-image {
width: 100%;
}
#top .av-large-testimonial-slider .avia-testimonial-meta-mini {
text-align: center;
}/* Scroll to top button on mobile */
.responsive #scroll-top-link {
display: block !important;
}And there is also the Advanced styling for the Widgets titles.
-
This reply was modified 1 month, 2 weeks ago by
xfacta.
February 19, 2025 at 11:05 am #1477376Hi,
Thanks for that. Both the media queries you have in Quick CSS looks to be open:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ /* Social icons 5 column display on mobile to stop overlaping */ @media only screen and (max-width: 767px) {
The need to be closed like so:
@media only screen and (max-width: 767px) { CSS inside media query goes here }
Best regards,
RikardFebruary 19, 2025 at 11:38 pm #1477425Thanks so much that fixed it :-)
February 19, 2025 at 11:52 pm #1477428Hi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
This reply was modified 1 month, 2 weeks ago by
-
AuthorPosts
- The topic ‘Footer Widget Titles – MailChimp widget field order and display issue’ is closed to new replies.