themevision
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Agama Blue] Agama Blue – How to make menu longerHello, Sabrina,
If you want to stretch the Header container, so more links can fit in the one line, you can try to do that using the following code(insert it into Customizing->General->Additional CSS):
@media (min-width: 992px){ #masthead .tv-container { max-width: 100%!important; } }Adjust the max-width value according to your needs.
Forum: Themes and Templates
In reply to: [Agama Blue] Agama Blue – How to make menu longerHello, Sabrina!
Can you give me the address of your website?
Thanks.
Forum: Themes and Templates
In reply to: [Agama Blue] How to edit my home pageHello,@manju041987!
Simply go to Dashboard->Pages,
and look for a page that has a bold “Front Page” inscription below the page title
Forum: Themes and Templates
In reply to: [Agama] Only display Header on homepageForum: Themes and Templates
In reply to: [Agama] Only display Header on homepageHello @osasza96 !
First, you need to find the specific page ID number on the page in which you want to apply the code.
To discover the page id, please follow the steps below :
1. Navigate in your browser to the page 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 “page-id-…”. That’s the class you should use.You can check THIS video guide
then, Open the Customizing->General->Additional CSS
and insert the below code. Add the Page selector for every page you want to remove the image and replace the page ID. (Separate the selectors with a comma).home #agama-header-image, .page-id-31 #agama-header-image { display: none!important; }Regards
Forum: Themes and Templates
In reply to: [Agama] Only display Header on homepageHello @osasza96!
This code is enough to do that:
.home #agama-header-image { display: none!important; }Regards
Hello,@adnananeacsu!
Try to add the following code into Customizing->General Additional CSS:
@media only screen and (max-width: 600px){ .header-image{ height: 30vh!important; } }Regards
Forum: Themes and Templates
In reply to: [Agama] Remove Featured image from PagesHello, @alchef12!
Try to insert the following code into Customizing->General->Additional CSS:
.page .entry-header img { display: none!important; }Regards
Forum: Themes and Templates
In reply to: [Agama] Remove Featured image from PagesHello, @alchef12
Do you mean this option?
https://prnt.sc/t4wnq8Forum: Themes and Templates
In reply to: [Agama Blue] How to change the footer background color?Hello @baribalpl!
Try the following code:
.footer-widgets .menu a { color: white!important; }Regards
Forum: Themes and Templates
In reply to: [Agama] Remove Featured image from PagesHello, @alchef12!
This option is located in ustomizing->Blog->Single Post menu.
https://prnt.sc/t4427wRegards
Forum: Themes and Templates
In reply to: [Agama] disappear header menu when scrollingHello, @alchef12!
Try to insert the following codes into
Customizing->General->Additional CSS:#masthead{ position:relative!important; } #agama-header-distance{ display:none!important; }Regards
Forum: Themes and Templates
In reply to: [Agama] Social networks icons ceased to appearHi @virwayer
I don’t see any problem there
https://prnt.sc/t2rsq5
https://prnt.sc/t2rshwHave you tried clearing your browser’s cache?
Forum: Themes and Templates
In reply to: [Agama Blue] How to change the footer background color?Hi, @baribalpl
Try to add the following code additionally:
.footer-widgets{ border-top:none!important; }Regards
Forum: Themes and Templates
In reply to: [Agama Blue] How to change the footer background color?Hello @baribalpl!
Insert the following code into Customizing->General->Additional CSS:
#agama-footer { background-color: black!important; }Change the color code per your needs.
Regards