themevision
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Agama] How to change side bars out of the boxed bodyHello, @alexpennington!
If you want to add an image as a background there is an option in the
Customising ▸ General▸Body menu to do that.To change the background color, insert next code into
Customising->General->Additional CSS:@media screen and (min-width: 960px){ body { background-color:#32D3E5!important; } }Change the Background-color code per your needs.
Forum: Themes and Templates
In reply to: [Agama] Cancel “Blog” titleHello, @alexpennington!
That part of the page is called a “Breadcrumb”.
If you don’t need it, go to Customising->Breadcrumb menu and turn it off.
Regards
Forum: Themes and Templates
In reply to: [Agama] meny and marginsHello,@kallepe!
1.
Have you tried to turn off the Header shrinking?or, you can insert a next Custom CSS code into Customize->General->Additional CSS:
.sticky-header nav a, .sticky-header-shrink nav a{ font-size: 13px!important; }2.
On the Full-width page template, margins are already 0px, but if you want to stretch the width of the page content, try to insert the next Custom CSS code into Customize->General->Additional CSS:
.vision-row { max-width: 100%; }Change the max-width value per your needs.
Regards
Forum: Themes and Templates
In reply to: [Agama] Menus borked since updateHello,@nicogogogo
I’m glad I helped you. 🙂
Forum: Themes and Templates
In reply to: [Agama] Customizing does not workHello,@lillt!
I see that you are using the old version of the Agama-pro theme. This can be the reason for your problem. Please update your theme to the latest version (1.4.6) and check again.
Since this forum is related to the Agama (free) theme only, next time, please, visit the Agama-Pro forum, located at the following address:Agama-Pro support forum.Regards
Forum: Themes and Templates
In reply to: [Agama Blue] Change button colors/outline/type on sliderHello,@janewp1971!
Those colors can be changed in:
Customising->Slider->Slide #1 (2) ….. Button BG Color.Use next code to change the Logo padding value:(Insert it in Customise->General->Additional CSS)
.sticky-header .logo{ padding:0px; }Change the padding value per your needs.
Regards
- This reply was modified 7 years, 7 months ago by themevision.
Forum: Themes and Templates
In reply to: [Agama] Website scroll issueHello,
That’s weird.
I just tested the plugin “Post and Page Builder” and did not find any problems with incompatibility. Have you tried to deactivate all plugins except the “Post and Page Builder”?
You may have a problem with a conflict of multiple plugins.Have you tried the Elementor Page builder?
Forum: Themes and Templates
In reply to: [Agama] Change background color of block quotesHi,@janewp1971!
Here are the right CSS codes for you: (Insert it in Customizing->General->Additional CSS)
.entry-content blockquote{ background-color: gray; } #wpforms-form-55 input, #wpforms-form-55 textarea { background-color:gray; }Change the background color per your wish.
Regards
Forum: Themes and Templates
In reply to: [Agama] Change background color of block quotesHello @janewp1971!
Of course, there is a way, but, since your site is currently in the maintenance mode, I can’t help you with that right now.
Please, let me know when your website is available, then I will able to help you.
Regards
Forum: Themes and Templates
In reply to: [Agama Blue] Hide header image on front page onlyHello,@janewp1971!
Insert the following CSS code into Customising->General ->Additional CSS:
.home #agama-header-image{ display:none!important; }Regards
Forum: Themes and Templates
In reply to: [Agama] Website scroll issueHello,@relientkitten!
I just checked your page again and found that the error now appears on my side too.
It’s most likely you have a conflict with some of the plugins you have activated, so I suggest you check the plugins.
So to do that, please deactivate ALL plugins temporarily, then check if the page scroll will start working correctly.
If it works, re-activate them individually (one-by-one) until the problem appears again on that way you can find the problematic plugin (s).Regards
Forum: Themes and Templates
In reply to: [Agama] Website scroll issueHi,
Unfortunately, I do not see any error so I can not help you, as your web page works quite well on my computer.
Have you tried to open your website on another computer?
Regards
Forum: Themes and Templates
In reply to: [Agama] Website scroll issueHello,@relientkitte!
It works just fine on my side…
anyway, if you still have that issue, try to turn off the Nicescroll, located at:
Customizing->General->Extra menu
https://prnt.sc/l04sc0Regards
Forum: Themes and Templates
In reply to: [Agama] Responsive logoHello,@0midgard0!
Insert additionally following CSS code:@media screen and (max-width: 992px){ .site-header hgroup { text-align: left!important; } #masthead .logo { width: 80% !important; } .mobile-menu-toggle{ padding-top:0px!important; } }Regards
Forum: Themes and Templates
In reply to: [Agama] Responsive logoHello, @0midgard0!
Add this code to the Additional CSS:
#masthead .logo { width: 100%!important; } @media only screen and (max-width: 992px) { #masthead .logo { width: 90%!important; } }Regards