38351 comments found.
Hey there. How do I make the font of the text logo title at https://magicphrases.com/ bigger on mobile? I’ve tried increasing the H1 setting under “responsive settings” in the Salient typography section, but that didn’t do the trick. My goal is for the font to be large enough to fill the full width of a mobile phone screen. Thanks for your help .
Hey marcfest,
Add the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:
@media only screen and (max-width: 999px) {
#header-outer #logo.no-image {
font-size: 48px;
line-height: 1;
}
}
Cheers
Thank you !!
You’re welcome, marcfest 
Hi, how can I translate the Hide Filters and Show Filters text? I have Loco Translate but i dont find that particular text, thanks
Hey barbecho,
The strings in that button are all separate i.e. “Show”, “Hide”, “Filters”.
Kind regards,
Hi. Please see my demo here: https://www.bravura.net/new/ – I created a Body Border of 20 px but now the logo animation (scale to smaller size) does not work. Is there a different way to achieve the Passepartout without using a border. I am sure I saw it somewhere?
Hey, By default the header resize effect will only activate when using the body border option if you have the transparent header effect active. You can add the effect in your setup without enabling that option by add the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:
@media only screen and (min-width: 1000px) {
#header-outer #logo img {
transition: height 0.3s ease!important;
}
#header-outer.scrolled-down #logo img {
height: 50px;
}
}
Hello. The iphone view doesn’t look at all as suggested on the browser, looks ‘broken’. Is there a fix?
Hey lenanem,
I’d be happy to take a look and assist if you can provide your URL
Thanks in advance,
Hi, the filter by price widget does not work, I dont know why. It does not show
Hey barbecho, that WooCommerce widget will only display on shop archive pages where there are products available to sort. If you already have products setup then WooCommerce is likely having a data issue with your products. There are tools within WooCommerce > status > tools to update the database/regenerate product terms. I would take a look through this thread in regards: https://wordpress.org/support/topic/woocommerce-price-filter-not-working/
Thanks it works, last thing, how can I translate the Hide Filters and Show Filters text? I have Loco Translate but i dont find that particular text, thanks
Hey barbecho,
The strings in that button are all separate i.e. “Show”, “Hide”, “Filters”.
Kind regards,
But its not on the plugins of Salients nor the Salient Theme either, I dont find those word anywhere so I can replace it
Hey barbecho, those three strings are contained in the main theme text domain (salient) – are you using the latest version of the theme? (14.0.5)
Kind regards,
Hi there,
I would like my text that is marked by a red border, see here: https://ibb.co/bBQnkT1
to be wider then the column it is in, would that be possible? This is the page: https://zeal.kleidi.nl/ – this issue is only regarding mobile.
Thanks in advance. Best regards, Tes
Hey Tes,
You can use the following snippet in regards:
@media only screen and (max-width: 690px) {
.home .wpb_text_column {
white-space: nowrap;
}
}
Cheers
Yes, perfect. Only one thing. Now the text below the image is not centered anymore. Would that be possible?
for example: https://ibb.co/wQSy8qT
‘ambassadeurs’, but also the ones next to it (reviews).
Thanks.
Hey Tes, you can alter the previous snippet to be as follows:
@media only screen and (max-width: 690px) {
.home .wpb_text_column {
white-space: nowrap;
}
.home .wpb_text_column p {
display: flex;
justify-content: center;
}
}
Hi there, thanks. I noticed it’s not centered yet. I’ve added the provided snippet above, but there are still some deviations. See this screenshot https://ibb.co/NnZVkcK and or this link: https://zeal.kleidi.nl/
Hey Tes,
Try adding this as well:
@media only screen and (max-width: 690px) {
body .img-with-aniamtion-wrap.custom-width-90pct .inner {
margin: 0 auto!important;
}
}
Hi ThemeNectar,
Let me start by saying what an amazing theme you have built with Salient, it’s awesome!
1. If you could visit the URL below and let me know if it’s possible to hide/remove the magnifying glass in the lightbox that’s located in the upper right corner when you view a larger image under the “Photography” section.
https://neileverosborne.com/photojournalism/editorial/audubon-a-pipeline-runs-through-it-ecuador2. There appears to be a white gap between the navigation menu and the nectar slider. Do you know how I can remove that?
3. Under the “Editorial Spreads” section, is it possible to keep the gallery full width as it currently is but have the individual images smaller?
Appreciate your help. Thanks.
Best, Alan
Hey Alan, I’m glad to hear that you’re enjoying Salient 
1. Add the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:
.fancybox-toolbar .fancybox-button--zoom {
display: none;
}
2. One of your custom rules within your child theme style.css file is causing that.
The rule I’m referring to is:
.single-portfolio #full_width_portfolio .span_12 {
padding-right: 0px;
margin-top: 40px;
}
3. Yes, when editing the image gallery element you can change the “Desktop Image Height” and “Sm Desktop Image Height” fields to be smaller values than they are currently set to.
Kind regards
Hello,
I am currently integrating a multilingual site. How can I translate the Global Section?
I use Polylang Pro to manage the multilingual content of the site.
Thank you in advance.
Hey MAJMonaco,
Global Sections are a custom post type and should be translatable as any CPT is. Can you ensure that you have that functionality active within Polylang https://polylang.pro/doc/multilingual-custom-post-types-and-taxonomies/
Kind regards,
Hi,
I would like to create an off canvas menu style that overlaps the main content, as on this website – https://www.hycontrol.com/#
Is this possible on your theme please?
Thanks,
Rory
Hey Rory,
Yes, but that style is offered in a hover trigger. It’s called the “Slide out from Side Hover Triggered”, available to assign in the Salient options panel > header navigation > off canvas menu tab.
Cheers
Hi there,
On my mobile version of this page: https://zeal.kleidi.nl I want to create some more white space between the left and right side of my bottom row In this screenshot I draw some lines what I meant: https://ibb.co/3zR9pRX
I want it to be like this: https://ibb.co/bBxV9tR
Would that be possible?
Hey again Tes,
You can change the positioning from left: 0, top: 0 to be left: 30px and right: 30px. The minimum width for that row will also need to be adjusted from 100% to something smaller such as 80%.
Kind regards,
Hi! Hope you´re well. One question, is it possible to configure the “footer reveal option” only in certain pages?
Thanks and Best regards,
Hey vivraestudio! Hope you’re doing good as well 
With the effect enabled, you can remove it on all pages except a select few by adding the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:
body:not(.page-id-1):not(.page-id-2) .container-wrap {
margin-bottom: 0!important;
}
body:not(.page-id-1):not(.page-id-2) #footer-outer {
position: relative!important;
}
You’ll need to replace the :not(.page-id-1):not(.page-id-2) with a list of your page IDs to keep it active on.
Cheers
Thanks a lot!!! I´ll try 
You’re welcome, vivraestudio 
Good morning, ¿Can this template be used in Blogger? Thanks
Hey bnjmedios, Salient is only available as a WordPress theme.
Kind regards,
Doing some work for a client and trying to adjust the single posts to look like this:
https://themenectar.com/salient/agency/be-my-guest/How do i go about setting it up so single posts display like this? Thanks a bunch!
Hey darkeccho!
In the Salient options panel > blog tab, select the “Fullscreen with Meta Under” for your “Blog Header Type”.
Kind regards
I just wanted to say a massive thank you for the Image Grid element. What an absolutely brilliant implementation and so flexible. Thank you!
I’m glad to hear that you’re enjoying it, velocity_uk! 
Cheers 
Hi Guys,
Thanks for the great theme.
Is there any way to have a search function within the team page? Not via the global one sitting in the header, I have a ‘team’ page with different team members, let’s call it a ‘team page’ and wanted to have a search function only within it, so it would filter the team members – not sure if it’s possible at all?
Thanks!
Hey dephixeb!
There’s no built-in functionality to place a search bar on a page that will search through page content unfortunately. However, you could use the “Tabs” page builder element to categorize your team members into different sections.
Kind regards,
Hi!
when i use Fullscreen Rows i have always a dark background color.
here the css in the file fullpage.css
nectar_fullscreen_rows[data-animation=”none”] > .wpb_row .full-page-inner-wrap {
background-color: transparent; }
where can i change it? When i force it through CSS in white, i always have white for every element i use.
Thanks!
Hey mc-pint,
Have you specified a BG color for the “Overall Background Color” field in the full screen row settings metabox? https://ibb.co/TTp7vJc If you’re not seeing that field, try switching to a different option for the Animation Between Rows field.
Kind regards,
perfect! worked fine for me! thanks
You’re welcome, mc-pint 
I updated the theme and my footer is gone (white block), can’t really figure out why, I disabled the reveal function in Theme settings, so the visitor don’t see this white block, but no footer is shown. I think my support has ended as I purchased this theme years ago. Could you still help with this?
Hey Foodstijl,
If you’re using a child theme with template overrides, those will likely need to be updated to match the current theme version. If you’re not using a child theme or that doesn’t apply to you, please reach out via the contact form on my author page.
Kind regards,
Sorry, I mist your reply in my mailbox. I send you a message via the contact form on you profile page. Hope you can help.
Hi!
i’m using the Centered Logo Menu option and i want to place the logo a little bit down and go over the header (. something like margin-top: 50px. So that the logo is a little bit into the content. Is there a possibilty to do this easily via CSS?
Thanks!
I hope you understand my request 
Hey mc-pint,
Add the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:
#header-outer #top #logo img {
transform: translateY(40px);
}
Cheers
perfect! worked fine for me! thanks
You’re welcome, mc-pint 
Just a suggestion which I really hope does get implemented. Custom Fonts.
I’d love the ability to upload custom fonts directly within the salient options panel, without having to rely on a plugin (UseAnyFont – Currently not available) or manually uploading the fonts via FTP and using custom CSS and a plugin (Snippets)
Majority of your competitors already offer this and it really is useful!
Keep up the good work guys 
Hey jbennett360, Custom font uploading is actually on the top of the wishlist – I’ve noted your +1 for the idea 
Cheers
That’s great to hear. Hopefully we’ll see this implemented soon! 
Hi there! On some pages I use the TABS element. How is it possible to link to the third tab for example in a ? When I use tab-ID it always open first tab.
Hope for your reply.
Best, Alex
Hey Alex!
You can add ?tab=tab-name to your URL to link directly to a specific tab.
Kind regards
Hi! sorry it doesn´t work: https://www.cultcaffe.at/kaffee/?tab=#tab-1650957976137-4
Are you sure with ?tab=tab-name ? I have tried all variants, it always opens first tab.
Cheers, Alex
Ok it works with ?tab=Be%20Organic%20-%20Be%20Nature thanks!
Glad you got it, mediastyle12 
Yes, the actual tab name is required in the URL parameter
Cheers