themevision
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Agama] hyperlink double colorHello, @danielaforum!
If I correctly understand your question, I think the code below will do work for you.
(Insert the code in:Customise->General->Additional CSS)code:
.entry-content p a{ color: #FF6A6A; } .entry-content p a:hover{ color: #000; }https://prnt.sc/ibfko8
http://prntscr.com/ibfk4tBest Regards
Forum: Themes and Templates
In reply to: [Agama] Header logo and menu disappears in theme V1 on mobileHello,@geraldmatisan!
I checked your site and found that your problem is that you’ve set Header background color and Site primary color in the same color.
To solve the problem that you have, you have two options:1. Change the Primary color of the Skin, in the
Customising-> General-> Skins, menu.
or2. Add a CSS code below, in
Customising-> General-> Additional CSSmenu, to change the color of the “Hamburger Menu” only.code:
.mobile-menu-toggle-inner,.mobile-menu-toggle-inner:before, .mobile-menu-toggle-inner:after{ background-color: #B02A2A!important; }Change the color code per your needs.
Regards
Forum: Themes and Templates
In reply to: [Agama] Social Icon for Email Missing?Hello,@smikers!
Unfortunately, It ‘s a known bug in the free theme, which we will fix in the next theme update.
Temporarily you can solve this by adding a custom CSS code in
Customize-General->Additional CSScode:
.fa-email:before{ content: "\f0e0"; }Thank you for your patience.
Regards
Forum: Themes and Templates
In reply to: [Agama] Blog LayoutThe “Read More” string is located in a class-agama.php file, inside the wp-content/themes/agama /framework/ folder.
https://prnt.sc/i5gnhqRegards
Forum: Themes and Templates
In reply to: [Agama] Blog LayoutHi, Andy!
Unfortunately, it’s not possible…
Regards
Forum: Themes and Templates
In reply to: [Agama] Blog LayoutHello Andy!
1.
a) Open theCustomising ▸ Blog ▸ Generalmenu, and increase “Excerpt” value, to show the full posts.Make sure the “infinite scroll” option is turned OFF.
https://prnt.sc/i5e5gy
On the same place, you can turn off the “Read more” url on blog excerpt.b) Go to
Dashboard->Settings->Reading, and enter the number of the post you want to show on the blog page in the “Blog pages show at most” field. https://prnt.sc/i5e4swNext, for the second question:
You will need to modify the theme file, so if you want to avoid the changes when the theme is updated, I suggest you use the child theme.
So, to translate the “Comment” form, please follow the next steps:
1.Log-in to your hosting space (server) via FTP client.
Then, on your server, find the agama folder in the theme folder
(path should be this: … / wp-content / themes / agama /)2. find the agama-functions.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 agama-child folder with some text editor (Notepad++)
5.Scroll down to the lines #262-271 and translate selected strings:6. Save the file.
PS. You can also edit this file with the theme editor.
If you don’t need it, you can turn off the HTML tags suggestion.
this option is located in theCustomising ▸ General ▸ Commentsmenu.
https://prnt.sc/i5eewqRegards
Forum: Themes and Templates
In reply to: [Agama] Problem with menu caused by tall logoHi Andy!
Try to add this code, to solve the above-stated issue:
.home .shrinked nav{ padding-top: 20px; }Regards
Forum: Themes and Templates
In reply to: [Agama] Problem with Agama ThemeHi,@muratturan19!
Chrome on Linux:
Chrome on Windows 7:
Regards
Forum: Themes and Templates
In reply to: [Agama] Problem with menu caused by tall logoHello Andy!
If you want to have different padding-top value just on the “home” page,
this code should work for you:.home .pull-right { padding-top: 50px;}Can you post a link to your website where you need this code?
Regards
Forum: Themes and Templates
In reply to: [Agama] Problem with Agama ThemeForum: Themes and Templates
In reply to: [Agama] Text cuts off/chops off words in the rowsHello, @firstclasscounsel!
Unfortunately, Agama (free) theme don’t come with the bundled page builder.
To solve your problem, you can try to add the code below inCustomize->General->Additional CSS
https://prnt.sc/i4td2acode:
.textwidget p, .entry-content p{ text-align: justify; }I think the code will do what you need.
Regards
Forum: Themes and Templates
In reply to: [Agama] Problem with Agama ThemeHello, @muratturan19!
Can you be a more specific ?, because I checked your site and found that the social share buttons work as expected.
Please share some screenshots with marked an issue you have.Regards
Forum: Themes and Templates
In reply to: [Agama] Text cuts off/chops off words in the rowsHello, @firstclasscounsel!
Thank you for using our theme.
As I can see, you build your pages with the Siteorigin-Panels page builder, and this plugin is not a part of the Agama theme itself, so your question is more related to the SiteOrigin Support Forum.
or you can check the SiteOrigin Page builder Documentations .
Regards
Forum: Themes and Templates
In reply to: [Agama] Social Icons Top and Bottom do not show on FirefoxHello, @chameleontas!
I tested your site on my Linux machine(Debian based, Deepen Linux) and didn’t find the problem you describe.
http://prntscr.com/i4c2hu
http://prntscr.com/i4c2otMaybe you can check this article.
Best Regards
Forum: Themes and Templates
In reply to: [Agama Blue] I don’t want header image on all pagesHello,@tbb1911!
To solve this, simply add the code below in
Customize->General->Additional CSSbody:not(.home) #agama-header-image{ display:none; }Best Regards