Abhishek Kumbhani
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress site with scrolling effectHello @iliana1248
You can achieve the same parallax scrolling effect by using CSS, try this code:
.class-name { background-image: url('image/path.jpg'); background-attachment: fixed; }
Or you can try this plugin.
Forum: Fixing WordPress
In reply to: Small image before and after widget titleHello @finefolk
You can add an image by just making few CSS changes:
/* Before Title Image */ .sidebar-borders .widget-title span:before { width: 65px; // Adjust according to your need height: 30px; // Adjust according to your need background: url(https://learningfrombees.com/wp-content/uploads/2020/04/smallleafleft.png); border: none; background-size: contain; background-repeat: no-repeat; } /* After Title Image */ .sidebar-borders .widget-title span:after { width: 65px; // Adjust according to your need height: 30px; // Adjust according to your need background: url(https://learningfrombees.com/wp-content/uploads/2020/04/smallleafright.png); border: none; background-size: contain; background-repeat: no-repeat; }
I hope this will help.
Thanks,
Abhishek- This reply was modified 4 years, 7 months ago by Abhishek Kumbhani.
Hi guyz,
I have fixed this issue.
Actually on 3rd step, plugin could change database credential but somehow it’s showing date with current time stamp.
The solution is we need to manually complete the 3rd step by changing database credential in wp-config.php file.
That’s it.
Hope this help.
Thanks for your reply. But seems like its not working. Still getting email on my default email only.
Forum: Plugins
In reply to: [Contact Form 7] Additional Headers invalid mailbox syntaxMake sure you have added/used
[your-email]
in your contact form.Something like this :
[email* your-email]
- This reply was modified 6 years, 6 months ago by Abhishek Kumbhani.
- This reply was modified 6 years, 6 months ago by Abhishek Kumbhani.
Forum: Plugins
In reply to: [Contact Form 7] Additional Headers invalid mailbox syntaxYou should try
Reply-To: [your-email]
- This reply was modified 6 years, 6 months ago by Abhishek Kumbhani.