themevision
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Agama] News Headlines on front page spacingSorry, I did not understood you before…
I think next CSS codes will do work for you:
body:not(.single-post) .article-wrapper { margin-bottom: 10px; } .site-content article p{ margin-bottom:0px!important; } footer.entry-meta { display: none; } .site-content article .article-entry-wrapper { padding-bottom: 10px; }Change the margin-bottom and padding-bottom values per your needs.
Regards
Forum: Themes and Templates
In reply to: [Agama] News Headlines on front page spacingTry to change the above code with the following, and check again.
.entry-title a{ letter-spacing: -2px; }this is the code for the Title.
Forum: Themes and Templates
In reply to: [Agama] News Headlines on front page spacingHi,
I checked your site again and found that you have entered the code correctly, and the code works (or maybe I didn’t understand you correctly).
You can change the letter-spacing value to ” – ” value if you need it.
http://prntscr.com/iqpsbs
http://prntscr.com/iqpslqRegards
Forum: Themes and Templates
In reply to: [Agama] News Headlines on front page spacingHi,
As I can see you still use an old version of the theme (1.2.8.10)
newest is 1.3.2Placing the code in Customize>Styling>custom CSS will work too.
Regards
Forum: Themes and Templates
In reply to: [Agama] home can not be setHi,
You do not have to be afraid.
To enable the Slider on Static Homepage, go to Customizing->Slider-> General and select a “Front Page” from the “Visibility” drop-down list,
http://prntscr.com/ioz6v9
In order to display Front Page Boxes, go to
Customizing->Front Page Boxes-> General and do the same.
http://prntscr.com/ioz744All other settings will remain.
Regards
Forum: Themes and Templates
In reply to: [Agama] home can not be setHello @giulia74!
For the static front page, you can only choose the pages you made,
so, If you want to modify a static Homepage you need to make a new “Home”(call it whatever you want) page and pick that page from the “Homepage” drop-down list, then you will be able to find your page on the list of pages, in Dashboard->Pages (Next, to the page, you selected for Homepage in the list of pages will be written “Front-page”)and edit it.Regards
Forum: Themes and Templates
In reply to: [Agama] News Headlines on front page spacingYou have an old version of the theme…, please update your theme first, then try again.
this code should work:
.entry-title a{ letter-spacing: 0px; }Regards
Forum: Themes and Templates
In reply to: [Agama] News Headlines on front page spacingHello @alm367!
Insert the code below, in Customize->General->Additional CSS:
.entry-title a{ letter-spacing: 0px; }Regards
Forum: Themes and Templates
In reply to: [Agama] Troubles exporting menus & slidersHello,@azrukal!
Thank you for using the Agama-Pro theme.
Unfortunately, this forum is for issues related to the Agama (Free) theme.
If you have questions related to the Agama-Pro theme, please go to the following address https://theme-vision.com/forums (You will have to log in with your e-mail and password).To properly migrate your site from the Localhost, you can refer to the instructions on the following links.
http://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-from-local-server-to-live-site/
http://www.wpexplorer.com/wordpress-local-to-live/Best Regards
Forum: Themes and Templates
In reply to: [Agama Blue] LOGO center and widthHello, @vivaz!
I think next codes will work for you for the first two wishes:
.sticky-header .logo { max-height: 65px!important; } .site-header .sticky-header nav { padding-right: 20px; }I don’t see the space that you mentioned, but if any, you may have to go to Customize ▸ Header ▸ General menu and set the top-border value to “0”.
https://prnt.sc/iog5qlRegards
Forum: Themes and Templates
In reply to: [Agama] Blog pageHello @mktedguara!
I’m not sure I understood your question.
I visited your site and found that posts are showing on your homepage.
The lack of a content on the sidebar seems to be caused by some additional plugin.
Can you explain more precisely what is the problem?
Or attach the screenshot of the problems you have.Regards
Forum: Themes and Templates
In reply to: [Agama] Link ColorsHello, there!
There are 2 ways to change the color of hyperlinks:
The first way is with Inline CSS by adding the style attribute directly into the hyperlink code, inserting a color property into the style attribute then giving the color property a color value.https://prnt.sc/ino05f
Change hyperlink coloror,second way is to add next codes in Customize->General->Additional CSS:
body.single-post .entry-content p a{ color: #28CC08; } body.single-post #jp-relatedposts p a{ color: #006EFC!important; } body.single-post .single-line-meta a{ color: #9f9f9f!important; }Change the colors per your needs.
Regards
Forum: Themes and Templates
In reply to: [Agama] How to remove page title and field for suchHello, @floka!
If you want to set a different title of the breadcrumb for each page separately, it’s a little bit tricky but possible…
First, you need to find the specific page ID number on the page which you want to change the title of the breadcrumb.
So, please follow the steps below to discover the page id:
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 add the code below:.page-id-9 #page-title h1{ visibility:hidden; } .page-id-9 #page-title h1:before{ visibility:visible; content:"Your new text"; }Replace your page ID, for every page you want to change the title of the breadcrumb.
Regards
Forum: Themes and Templates
In reply to: [Agama Blue] LOGO center and widthHello,@vivaz!
Again… Insert the codes below, in Customizing->General->Additional CSS:
img.header-image{ width: 100%!important; } body #agama-header-image { margin:0px; }You can check next tutorials on youtube to learn how to select right elements.
https://youtu.be/Xb6ZIlYj2OY https://youtu.be/hx8lYulGqh8Regards
Forum: Themes and Templates
In reply to: [Agama Blue] LOGO center and widthHello,@vivaz!
Insert the codes below, in Customizing->General->Additional CSS:
.site-header .sticky-header .sticky-header-inner { max-width: 100%; padding:0; margin:0; } .sticky-header .logo{ width:100%; padding:0; margin:0; }Regards