themevision
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Agama] Placing Item Between Header Image and Front Page boxesHello, @pinpep!
Have you tried to use the “Agama Slider”?(Customizing â–¸ Slider â–¸ General)
For the static Front Page, set the slider visibility, on the “Visibility ” drop-down list to the “Front Page”.
Regards
Forum: Themes and Templates
In reply to: [Agama] Change name: Blog and Page not foundHello,@ingezdepingez!
These titles are called breadcrumbs and you can turn them off in the Customizing-> Breadcrumb menu.
https://prnt.sc/hvvonjIf you still want to translate them, it is possible, but you will need to edit the theme file.
Since you need to edit a theme file, I recommend that you use the child theme in order to avoid re-setting after we update the theme.So, if you decide to do this,first you need to make a agama-child theme , then
copy theclass-agama-breadcrumb.phpfile located on
/wp-content/themes/agama/framework, into
/wp-content/themes/agama-child/frameworkfolder.next, edit the file with some of the text-editors, (I recommend you Notepad++)
scroll down to the line number 65 and replace the word “Blog” with the “Nieuws”.
https://prnt.sc/hvvlkcnext, scroll down to the line number 173 and 174 and replace the words “Page not Found” with the word you want.
Don’t forget to save the document after you edit it.
Best Regards
Forum: Themes and Templates
In reply to: [Agama] primary navigationHello @ndegre5!
There are two ways to do this:
1. Open Customizing->Menus->Your menu name
then click on the menu item and drag and drop it to reorder.2. Open Dashboard->Appearance->Menus
then in the “Menu structure”, click on the menu item and drag and drop it to reorder.Don’t forget to save the menu after changes
Regards
Forum: Themes and Templates
In reply to: [Agama] Email icon in top nav social iconsForum: Themes and Templates
In reply to: [Agama Blue] Breadcrumb full “path” for SubPagesHello, @lmxc!
Thank you! 😉
Forum: Themes and Templates
In reply to: [Agama Blue] Access to all Blog posts from main menuHello, annajane!
Here are the simple steps, to do that:
1. Make a new “Blog” page for the Blogs.(Dashboard->Pages-Add new).
2. Go to:
Appearance-> Customize ->General ->Static Front Page
chose your “Blog” page on the “Post Page” drop-down list.
(don’t forget to hit the “Publish” button to save the changes)
https://prnt.sc/hnkf6a3. Go to:
Appearance->Customize->Menus->Main Menu,
click on+Add Itemsbutton to add your “Blog” page in the menu.
https://prnt.sc/hnkkjjthen on the right side, find your “Blog” page on the list of the pages, and click on it to add it to the menu.
https://prnt.sc/hnklukReorder the menu by dragging the link to the place where you want to show it.
That’s all…
Regards
Forum: Themes and Templates
In reply to: [Agama] Add social LinksHello, @shooter88!
You can expect this feature in the next theme update.(in the next few days).
Regards
Forum: Themes and Templates
In reply to: [Agama] Logo AND name headerHello,
Sorry if I was not clear enough.
Yes, that’s exactly what I thought.
Just wait for the update, we will add all the necessary codes.
Thank you
Forum: Themes and Templates
In reply to: [Agama] Logo AND name headerHi, @grupomccac!
Sorry for the late answer.
Hope, we will tomorrow release the theme update in which we will fix this issue.
Regards
Forum: Themes and Templates
In reply to: [Agama] Logo AND name headerHi, @grupomccac!
To add an alt attribute to the Logo, follow the steps below:
Edit the “header-default.php” file in Agama theme:
1. First Open Appearance…
2. then Editor…
3. On the right side find the header->header-default.php, and click on it to edit the file
4. Below the “<!– Logo –>” line find the line<img src="<?php echo esc_url( get_theme_mod( 'agama_logo', '' ) ); ?>" class="logo" >and replace it with this one:
<img src="<?php echo esc_url( get_theme_mod( 'agama_logo', '' ) ); ?>" class="logo" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
5. click on Update button to save the changes.Best Regards
Forum: Themes and Templates
In reply to: [Agama] Logo AND name headerHi,
To show the Title one line below the Logo, add the code below into
Customize->General-Additional CSS@media screen and (max-width: 480px) { .site-title a:before{ display: block;} }Change the max-width value per your needs.
Best Regards
Forum: Themes and Templates
In reply to: [Agama] Header movingHi,
I think you need to change the Header style in
Customizing â–¸ Header â–¸ Generalmenu, to the “V2”.or, put the CSS code below into
Customize->General->Additional CSScode:
.sticky-header.sticky-header-shrink { position: relative; }Regards
Forum: Themes and Templates
In reply to: [Agama] Logo AND name headerHello,@grupomccac!
You can reduce the size of the font, on smaller screens (smaller than 480 px) , using this code:
@media screen and (max-width: 480px) { .site-title a{ font-size: 80%!important;} }Of course, we will appreciate if you put our company on your website.
Thanks
Forum: Themes and Templates
In reply to: [Agama] Menu cut out on “boxed in” layoutHello @ivekk!
Your code is almost good…
just need to change your font-size value to “%” instead of “px”.So your code should be something like this:
@media screen and (max-width: 480px) { #agama_slider .slide-title{ font-size: 150%!important;} #agama_slider .button { font-size: 80%!important;} }Regards
Forum: Themes and Templates
In reply to: [Agama] Logo AND name headerHi,
Sorry for the late answer…unfortunately this solution is not good for the SEO.A better solution for you is to add the image to the site Title.(which is H1 type already)
First, remove the image logo in the
Customizing â–¸ Header â–¸Logothen add this code:
.site-title a::before{ display: inline-block; margin:15px; width: 110px; height: 96px; vertical-align:-50%; content: ""; background:url(http://grupomccac.org/wp-content/uploads/2017/12/sem-o-meio.png) no-repeat 0 0; background-size: 100%; }Of course, delete the code that I previously gave you.
Regards