Ali Samtia
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: apply hover effect for an image tileHere is the code you can use to make a glow on hover on an image in elementor:
a.slide-image {
display: block;
width: 200px; /* Adjust size as needed / height: 200px; / Adjust size as needed */
border-radius: 50%;
transition: box-shadow 0.3s ease-in-out;
}a.slide-image:hover {
animation: glow 1.5s infinite alternate;
}@keyframes glow {
0% {box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0.7); /* Red glow color / }25% { box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0.7); / Green glow color / }
50% { box-shadow: 0 0 20px 10px rgba(0, 0, 255, 0.7); / Blue glow color / }
75% { box-shadow: 0 0 20px 10px rgba(255, 255, 0, 0.7); / Yellow glow color / } 100% { box-shadow: 0 0 20px 10px rgba(255, 0, 255, 0.7); / Magenta glow color */
}
}Forum: Fixing WordPress
In reply to: Blog Post Title is Repeating Across Multiple PostsIf you are using elementor and using “Elementor custom skin” plugin in it then make sure you choosed the dynamic tag there in heading except of using static text
Forum: Developing with WordPress
In reply to: Adding a custom query_varsPotential Issues:
- Rewrite Rules Not Flushed
- Query Variables Handling
- Order of Hook Execution
Forum: Fixing WordPress
In reply to: Remove Default Homepage of 2024 ThemeYou can select your custom home page by going in to the WordPress Dashboard > Settings > Reading > Select “A?static page?(select below)” > Select Your home page you want
Forum: Everything else WordPress
In reply to: Editing Text in Search BoxI think its just your tagline and it contains symbols may be thats why you are facing this problem
Forum: Developing with WordPress
In reply to: apply hover effect for an image tileTo apply a hover effect to image tiles so that they appear clickable, you need to ensure that your CSS selectors are targeting the correct elements. Additionally, since you want the image to indicate it’s clickable, changing the background color might not be sufficient. You might consider using opacity, scaling, or adding a border effect. You can also add the mouse:
Additional Suggestions:
- Cursor Change: Changing the cursor to a pointer on hover can also indicate that the image is clickable.css
a.slide-image { cursor: pointer; }
Forum: Everything else WordPress
In reply to: Looking for pluginYou can use gravity forms plugin to do it Gravity forms plugin has the conditions like if its equal then show this and Its Amazing. Give it a try
Forum: Localhost Installs
In reply to: Home Page Doesn’t OpenPlease go to the Settings > Permalinks and then just click on the update then It should be opening and also confirm me is it not opening in elementor or its simply showing 404 Not Found error?