themevision
Forum Replies Created
-
Forum: Plugins
In reply to: [Gold Addons for Elementor] Modal feature not clickable when openedHi Artan!
Thank you for noticing that. We need to check this in our test environment and if we find that there is a problem in the plugin, we will fix it in the following plugin update.
Regards
Forum: Themes and Templates
In reply to: [Agama] Only display Header on homepageHi,@wenrenebao!
If you want to display the header image on the Homepage only, use the next codes instead of the code I gave you previously:
#agama-header-image { display: none!important; } .home #agama-header-image { display: block!important; }Regards
Forum: Plugins
In reply to: [Gold Addons for Elementor] Modal feature not clickable when openedHi, Artan!
That’s interesting…
Try to go with the following:.modal-backdrop{ display:none; }Regards
Forum: Themes and Templates
In reply to: [Agama] Only display Header on homepageHello,@wenrenebao!
If you want to hide content on the homepage only, try to insert the following code into Customizing->General->Aditional CSS:
.home #main.wrapper{ visibility:hidden!important; }Regards
Forum: Plugins
In reply to: [Gold Addons for Elementor] Modal feature not clickable when openedHello, Artan!
I just checked this on my local test environment and find no problem with the modal widget.
It’s possible that you have a conflict with your currently active theme/plugins.
Try to deactivate ALL active plugins (of course leave the Elementor and Gold Addons plugins active) then check this option again. If then the modal widget works, activate the plugins one by one until the problem reoccurs, so in that way you can find the problematic plugin(s), if any…
If that doesn’t help, try to activate some of the default WordPress themes and check again.Please let us know if you find that there is some sort of conflict so we can check and fix that.
Regards
Forum: Themes and Templates
In reply to: [Fury] Search not filtering products, showing as blog postsHi,
Try to use the following code:
.site-menu > ul > li svg{ margin-top:32px; }Regards
Forum: Themes and Templates
In reply to: [Fury] Search not filtering products, showing as blog postsForum: Themes and Templates
In reply to: [Agama] Center Header V2Hello, @alchef12!
Try the following code:
#masthead .tv-d-flex { display: block!important; }Regards
Forum: Themes and Templates
In reply to: [Agama] Front page slider particles and loadingHello, @samuelrabinowitz!
1.) Try to insert the following code into Customizing->General->Additional CSS:
#particles-js { height: 100vh!important; }2. Maybe you should try to optimize your images…
https://tinyjpg.com/regards
Forum: Themes and Templates
In reply to: [Agama] Full width Page imageHello, @amfa!
If you want the contents to be in a fixed width (boxed) and just the image to be the full width,
you can use this custom CSS code (Insert it into Customicing->General->Additional CSS):.wp-block-image.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }Also, the following should work well:
.wp-block-image.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }Regards
Forum: Themes and Templates
In reply to: [Agama] Full width Page imageHello, @amfa!
Can you give me the address to your website?
Forum: Themes and Templates
In reply to: [Fury] Search not filtering products, showing as blog postsHello, @misaoa !
Insert the following code into Customizing->Additional CSS:
.toolbar .search{ display: none; }Regards
Forum: Themes and Templates
In reply to: [Agama] Menu Header Font changes after publishingHello, @noosiekins!
Insert the following code into Customizing->General ->Additional CSS:
#agama-primary-nav a { font-family: Quicksand;!important }Regards
Forum: Themes and Templates
In reply to: [Agama] How To Full Width Template For Blog Posts?Hello, @siddharthgiri!
In that case, you need to find the specific post ID number for the single post in which you want to apply the code.
To discover the post id, please follow the steps below :
1. Navigate in your browser to the Single post you want to work with.
2. Right-click on that page (anywhere) and select “Inspect Element“.
3. Search inside the site’s markup for the body tag. It should be one of the first element in the source.
You’ll see it has many classes. Look for the class that starts with “postid-…”. That’s the class you should use.
https://prnt.sc/s7y7dzYou can check THIS video guide
then, Open the Customizing->General->Additional CSS
and insert the below code..single-author .site-content, .postid-4553 .site-content, .postid-4253 .site-content { flex: 0 0 100%!important; max-width: 100%!important; padding-right: 0px!important; }Add the Post selector for every Single post you want to change the width. (Replace the post ID.) If you want to select more posts at once Separate the selectors with a comma.
Regards
Forum: Themes and Templates
In reply to: [Agama] How To Full Width Template For Blog Posts?Hello, @siddharthgiri!
Insert the following code into Customizing->General->Additional CSS:
.single-post .site-content, .single-author .site-content{ flex: 0 0 100%!important; max-width: 100%!important; padding-right: 0px!important; }Regards
- This reply was modified 6 years ago by themevision.