shreyaam
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] Making Footer Widgets Center-Aligned on MobileI added this to the above css and it worked for all the views:
@media (min-width: 1025px) {
.site-footer input {
margin-inline: 0 !important; /* Remove auto-centering on desktop */
text-align: left; /* Optional: Align text inside the input field to the left */
}
}Forum: Themes and Templates
In reply to: [GeneratePress] Making Footer Widgets Center-Aligned on MobileHey Ying
This one center-aligned the form-field for both mobile and tablet but it disturbed the left alignment on Desktop:@media (max-width: 1024px) {
.footer-widgets, .lsi-social-icons {
text-align: center !important;
}
}
.site-footer input {
margin-inline: auto !important;
}Forum: Themes and Templates
In reply to: [GeneratePress] Making Footer Widgets Center-Aligned on MobileHey Ying, it got resolved on mobile but is still left aligned on Tablet.
Forum: Themes and Templates
In reply to: [GeneratePress] Making Footer Widgets Center-Aligned on MobileThe element causing problem is in fact the wp-form plugin’s form field (Field for entering email above Subscribe button in the first footer widget. It remains left aligned in mobile and tablet, in which I want it to be center-aligned just like all other elements of the widgets. I used this css for making it center-aligned:
#wpforms-4303 .wpforms-field-email input[type="email"] {
margin-top: -15px;
width: auto;
border: 1px;
text-align: center ;
}and used this css to center align other elements of the widgets on mobile and tablet:
@media (max-width: 576px) {
.footer-widgets, .lsi-social-icons {
text-align: center !important;
}
}
@media (min-width: 577px) and (max-width: 768px) {
.footer-widgets, .lsi-social-icons {
text-align: center !important;
}
}Forum: Themes and Templates
In reply to: [GeneratePress] Making Footer Widgets Center-Aligned on MobileYes, sure. https://giantsofcrypto.com/
Forum: Themes and Templates
In reply to: [GeneratePress] Local Font Preload IssueThanks!! That worked.
Forum: Plugins
In reply to: [Smart Slider 3] Slider Text Not VisibleThanks @laszloszalvak, that worked!! The smart-slider exclusion in JS and CSS worked for me.
None of it has worked @optimocha . I do not have any proxy server. I am stuck with this.
In my optimization plugin, lazyloading is off; so the issue is caused by Speed Booster only.
So, what is the resolution of this?
I do not have any till I had Speed Boost. I have now installed one.
Hi @optimocha
I manually flushed cache from my hosting, but the problem has not got resolved. What can I do stop the script from running?Since I deleted this plugin, it has caused so much woe. My recent posts widget has stopped showing thumbnails in the incognito mode. And as i can see in the inspect mode, speed booster is still running lazy loads for these images.
Forum: Fixing WordPress
In reply to: Read More Excerpt MissingHi @wpmudevsupport12, thanks for pointing that out. I think you are right. It is not caused by the plugin and is a matter of whether the last line of the excerpt gets completed within the available space for that excerpt or not.
Thanks @bnfw for pointing that out!!