skyhightech
Forum Replies Created
-
Hi Madalinaruza,
I had to go through unlimited elements back and forth on this issue only to find out that the actual issue is from translatepress plugin. The script was appearing to be empty when the website was translated to Arabic,I had to add the script manually
function load_owl_carousel_css_arabic() {
if (function_exists(‘get_locale’) && get_locale() === ‘ar’) {
wp_enqueue_style(‘owl-carousel-css’, ‘https://www.saudidiesel.com.sa/wp-content/plugins/unlimited-elements-for-elementor-premium/assets_libraries/owl-carousel-new/assets/owl.carousel.css’);
}
}
add_action(‘wp_enqueue_scripts’, ‘load_owl_carousel_css_arabic’);And after that the issue was resolved
Regards,
AsimHi Milos,
Thank you for replying. I did apply this code but it’s adding a new hover effect. What I want is the existing hover effect to be triggered. The widget I have is an Icon widget. If I hover on it directly, its colours change, I want that effect to trigger when I hover anywhere inside the column. See the image below:
Regards,
Asim
Hi Alex,
The font I want to use was not available in default fonts. So I uploaded it through elementor custom fonts option.
Now I want to use this font for Arabic in full website. So How do I do that?
Thanks
Forum: Fixing WordPress
In reply to: Animate Image or text everytime on scroll@dhruvkb Yeah I am also seeking help from there as well..
But I am looking for a simple css coding I don’t want to get into Java and HTML ..because then might as well install a plugin.
Forum: Fixing WordPress
In reply to: Anchor link not scrolling all the way down@bcworkz You are right.. I removed it and made it an inner section. Which did solve the issue.. Thanks for the help
@jonsisk and @mburridge I did try offsetting by using the coding you guys provided but didn’t work.. because I made a sticky header hide behind the 1st section and made it appear in 2nd.. It was just causing it to stop because the 2nd inner section was raised up by -85px this way the sticky header and the 2nd inner section appear together.
I’m not too good with coding so might be possible I may not be applying it correctly.
Thanks everyone!
Forum: Fixing WordPress
In reply to: Fixed Bacground image on MobileI did contact the Elementor team on their forms.. but they do not have a solution for this or they recommend any other plugins..
So I was wondering if anyone here actually found a solution via coding or any other work around..
Forum: Fixing WordPress
In reply to: Hide Scroll Bar only on Home PageHey George!
It worked.. Thanks so much for the Help man!
I’m a noob at coding and developing websites, so just learning from others ??
Thanks again and have a great day!
Forum: Fixing WordPress
In reply to: Hide Scroll Bar only on Home PageYes I’m using the basic Hello Elementor theme which supports every WordPress coding.
This is the test website I am working on right now :
https://demo.skyhightech.me/test3/And the coding I used is
body { overflow: hidden; /* Hide scrollbars */ }