Anmol Verma
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing mobile font in theme via Additional CSSusing more plugins will increase your page loading time. I will suggest using least number of plugins. If possible
Forum: Fixing WordPress
In reply to: Spice up adminyes if @infernoprime has child theme then do it there
Forum: Fixing WordPress
In reply to: Spice up adminIn your child theme function file find admin_scripts function and inside it add
wp_enqueue_style('custom-css', get_template_directory_uri() . '/your-file.css', [], time());- This reply was modified 7 months ago by Anmol Verma.
- This reply was modified 7 months ago by Anmol Verma.
Forum: Fixing WordPress
In reply to: Payment Option IconsI think you want this type of thing at the bottom of your homepage. Right?
- This reply was modified 7 months ago by Anmol Verma.
Forum: Fixing WordPress
In reply to: Changing mobile font in theme via Additional CSSNow your site looks good. Great
Forum: Fixing WordPress
In reply to: Changing mobile font in theme via Additional CSSYes and your site would be mobile responsive and rest depends on your designer how she/he can manage it on mobile
Forum: Fixing WordPress
In reply to: Changing mobile font in theme via Additional CSSI went to your site and saw that you have not added
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
to your site head and that is why your site is looking same on mobile as it is on desktop.
Responsiveness is not there.
to add this meta to your theme follow these steps:
WordPress Dashboard > Appearance > Theme file editor > Header.phpForum: Fixing WordPress
In reply to: problem with CSSA zoom/enlarged effect is here my friend @sacconi
.archive #primary .post a.post-thumbnail {
display: inline-block;
overflow: hidden;
margin: 10px;
border-radius: 20px;
aspect-ratio: 800 / 600;
}
.archive #primary .post a.post-thumbnail img {
transition: all 0.3s linear;
padding: 0;
object-fit: cover;
}
.archive #primary .post a.post-thumbnail img:hover {
transform: scale(1.12) rotate(1deg);
border-radius: 0;
}Forum: Fixing WordPress
In reply to: Submenu Items Disappear Quickly Under Menu Item@jreiels , if you have the script file where you can add script then add this script so that your site becomes normal
jQuery(document).ready(function ($) {
var mainItem = $("#main").detach();
var footerItem = $("#footer").detach();
$(mainItem).insertAfter("#header");
$(footerItem).insertAfter("#wrapper");
});Forum: Fixing WordPress
In reply to: Adding a navigation-bar to the right and make it stick?Please share your site URL so that I could provide you the best solution @rovvan
Forum: Fixing WordPress
In reply to: Elementor carousel widget@gozovillas here is the solution for your site corausel. Add this CSS to your customizer of page
.elementor .swiper-slide img {
object-position: bottom;
height: 256px;
width: 100%;
object-fit: cover;
}Forum: Fixing WordPress
In reply to: Icons are missing in productionIf you images and icons don’t show even after applying all the changes then try this URL of yours and also try to remove your cache plugin and then check
https://greenwebpage.com/community/?reloadHardForum: Fixing WordPress
In reply to: Shadows aren’t being reflected on images@gwenm please share your site link here so that i could help you out with this issue
Forum: Fixing WordPress
In reply to: problem with CSSYou can try this and it will definately work @sacconi
.prezzo {
margin-block-start: auto;
padding: 15px 10px;
}
.prezzo input.prezzo[type=button] {
margin: 0;
}