themevision
Forum Replies Created
-
Hello,@kiezkicker!
Thank you for the suggestions.
You can remove the divider before the date by inserting a following code into Customizing->General->Additional CSS:
.single-line-meta .inline-sep:first-child{ display:none!important; }Since you already use the child-theme, If you want to change the date format, on the “hardcoded way” please, follow the next steps:
1.Log-in to your hosting space (server) via FTP client.
On your server, find the agama folder in the themes folder
(the path should be this: … / wp-content / themes / agama /)2. find the “agama-actions.php” file inside the wp-content/themes/agama /framework folder.
3. Copy that file to the wp-content/themes/agama-child/framework folder.
4. Edit file in the agama-child folder with some text editor (Notepad++)
5. Scroll down to the line #220
6. Change the date format
7. Save the file.
https://prnt.sc/lfg46mRegards
- This reply was modified 7 years, 6 months ago by themevision.
Forum: Themes and Templates
In reply to: [Agama] Static Image -Home PageHello,@etjnc!
Actually, that is the easiest way to have the Image, title, and button on the homepage.
Eventually, you can add following code into Customizing->General->Additional CSS:
to hide the arrows,camera bar and loader from the slider:.camera_bar, .camera_prev, .camera_next, .camera_loader{ display:none; }Another way is to turn off the slider and add the image, button, and the title in the content using some page builder.
Regards
Forum: Themes and Templates
In reply to: [Agama] a fixed mobile menuHello,@satelit1978!
Insert the next code into Customizig->General->Additional CSS:
.mobile-menu{ padding-top: 10px; position: fixed; z-index: 9999; width: 100%!important; top: 60px; }Regards
Forum: Themes and Templates
In reply to: [Agama] a fixed mobile menuHello , @satelit1978!
Can you give me an address to your website?
Forum: Themes and Templates
In reply to: [Agama] About MenusHello,
A Primary Menu is the main menu selected as a primary menu in the WordPress Menu Editor.
https://prnt.sc/lelgj6
“Top” menu is the menu located in the top bar at the very top of your page.Regards
Forum: Themes and Templates
In reply to: [Agama] How to disable Agama Particles?Hello,@mcary!
There are two places where the particles can appear:
1. On the Header image
2. On the Slider.As I can see from the screenshot you attached, you have turned off the particles on the Header image, and the particles on the slider are still there,
so please, go to:
Customizing ▸ Slider▸Particles
menu and turn it off.
If after that your particles are still visible, Please give me the address to your website an I will give you the right CSS code to turn them off.Regards
Forum: Themes and Templates
In reply to: [Agama] Website scroll issueHi,
Just increase the min-height value 🙂
Regards
Forum: Themes and Templates
In reply to: [Agama] Website scroll issueHello Ashley!
There should be a minimum of 100vh in order for the page to work properly.
The above code should work on all resolutions. (I’m currently on 1080p and the code works fine.)Regards
Forum: Themes and Templates
In reply to: [Agama] Website scroll issueHi, @ relientkitten!
This happens because your page is too short.
The code above sets the minimum height for your page in order for your site to function properly.
Basically, the easiest way to solve the problem is to add more content to a page (or space) to increase the height of the page.
You can also try the following code instead of the code that I gave you above:
#main { min-height: 100vh; }If necessary, change the min-height value to suit your needs.
Regards
Forum: Themes and Templates
In reply to: [Agama] Website scroll issueHello,@relientkitten!
Try to insert the following CSS code into Customizing->General ->Additional CSS:
div#main { min-height: 1000px!important; }Please let me know if that helped you.
Thanks
RegardsForum: Themes and Templates
In reply to: [Agama] How to disable Agama Particles?Hello,@mcary!
There is an option in the customizer to turn it off.
(Customising ▸ Slider▸Particles )Regards
Forum: Themes and Templates
In reply to: [Agama] Logo sizeHello,@dorux5!
Have you tried to turn off the “Header Shrinking”?
(Customising ▸ Header▸General…Header V3)
or,
Insert following code into Customizing->General->Additional CSS:
#masthead .sticky-header-shrink .logo { max-height: 84px; }Regards
- This reply was modified 7 years, 6 months ago by themevision.
Forum: Themes and Templates
In reply to: [Fury] header image on homepage onlyHello, @liufunt!
To remove header image on all other pages except for the home page use next code:
(insert in Customizing->General->Additional CSS)body:not(.home) .fury-header-image{ display:none; }Regards
Forum: Themes and Templates
In reply to: [Agama Blue] Change button colors/outline/type on sliderHello,@janewp1971!
Use the following code to change the Slider button title, background, and border colors:(Insert it in Customise->General->Additional CSS)
#agama_slider .slide-content a.button{ color: #fff!important; background-color: #FE6663 !important; border-color:#FE6663!important }Change the color codes per your needs.
Regards
Forum: Themes and Templates
In reply to: [Agama] meny and marginsHi, @ kallepe!
If for some reason the function to disable the shrinkage of the head is not working,
To prevent a header decrease, try adding the following custom CSS codes to Customizing-> General-> Additional CSS:.sticky-header nav a, .sticky-header-shrink nav a{ font-size: 13px!important; } #masthead .logo, #masthead .sticky-header-shrink .logo{ max-height: 93px; }Set the font-size and the max-height values per your needs.
To make your woocommerce product page full width,insert next code to Customizing-> General-> Additional CSS:
@media (min-width: 992px){ .woocommerce .col-md-9 { width: 100%!important} }Regards