Forum Replies Created
-
AuthorPosts
-
February 9, 2019 at 6:06 am in reply to: Make search list disappear again on click in input or outside #1064859
Hi,
Sorry for the late reply, I wrote this script to remove the ajax search results on click, so when the user clicks away from the results the disappear, yet entering a new search creates a new search result, and it doesn’t interfere with clicking the results.
Try adding this code to the end of your functions.php file in Appearance > Editor:function remove_ajax_search_response(){ ?> <script> (function($){ $(window).click(function(){ $( ".ajax_search_response" ).remove(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'remove_ajax_search_response');Best regards,
MikeHi,
Sorry for the late reply, if I understand correctly you would like this text to be 30px ‘Montserrat’, Please try this code in the General Styling > Quick CSS field.av-subheading p,h3.av-special-heading-tag { font-family: 'Montserrat' !important; font-size: 30px !important; }and download the font from Google fonts and upload to your Enfold Theme Options > Import/Export > Custom Font Manager
If your want to replace the special heading of the text and use a Text Block element then be sure to add a custom class, as explained above and use this css:.custom_class p { font-family: 'Montserrat' !important; font-size: 30px !important; }just change the “custom_class” with your custom class.
Best regards,
MikeHey KenMarshall,
Could you please include a screenshot of the issue on your iPhone? While I don’t have an iPhone I may still be able to assist if I knew what the issue was.
Otherwise, another team member who has one could assist.Best regards,
MikeFebruary 9, 2019 at 4:14 am in reply to: Change Frame and "Send" Button Color in Contact Form #1064848Hi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-id-162 .main_color input[type='text'],#top.page-id-162 .main_color input[type='email'],#top.page-id-162 .main_color textarea { border-color: #696969 !important; } #top.page-id-162 .main_color #submit,#top.page-id-162 .main_color input[type='submit'] { background-color: #623920 !important; } #top.page-id-162 .main_color #submit:hover,#top.page-id-162 .main_color input[type='submit']:hover { background-color: #4ecac2 !important; } #top.page-id-162 .main_color label { color: #4ecac2 !important; }Best regards,
MikeHey image2site,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.home .aviaccordion-preview-title-wrap { background: rgba(254, 234, 54, 0.3) !important; }Please adjust the color to suit, then clear your browser cache and check.
For this example, I used a yellow.

Best regards,
MikeHey KenMarshall,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-id-3037 .togglecontainer .av_toggle_section { padding-bottom: 2px !important; }Please adjust to suit, then clear your browser cache and check.
Best regards,
MikeFebruary 9, 2019 at 3:40 am in reply to: Demo Blog Options – Completely Different Than Available Theme Options #1064834Hey shawnbanack,
It looks like you are using the advanced layout builder for your blog posts, to achieve this layout you will need to use the default or classic editor for posts. Then when you create the blog page with the advanced layout builder and use the “Blog” element, please use these settings:

Best regards,
MikeFebruary 9, 2019 at 3:20 am in reply to: How to make text in special headings into two colors in same sentence? #1064829Hey bloodyamazing,
To change the color of one word in the special heading, wrap the word with a span tag and class like this:<span class="red"> Your Word </span>
I used the word “red” as the class, but it can be any word as long as it’s not being used.
then add the matching css code in the General Styling > Quick CSS field for the class, like this:span.red { color: red !important; }Best regards,
MikeHi,
I adjusted the code for you, Please clear your browser cache a few times and check.Best regards,
MikeFebruary 9, 2019 at 2:48 am in reply to: Small bar above main menu in transparency (text color won't change) #1064819Hey hylandgraphics,
Without logging into your site, I’m not sure why the setting is not working for you, but Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top .av_header_transparency #header_meta a, #top #header_meta li, #top .av_header_transparency #header_meta .phone-info { color: #000 !important; }Best regards,
MikeHi,
Ok, then don’t add the code :)
But I still see the numbers in black, where do you see the numbers as white?
Do you still see this?
Please see the screenshots in Private Content area.Best regards,
MikeHey laceym002,
Thank you for the video and the login, typically these kinds of links are added with javascript, but examining your site I don’t see the link. I tried viewing your site while “logged out” to ensure that the script didn’t only apply the link for non-users.
I also checked your plugins to ensure it was not one of them.
Does this show every time or only sometimes?
This could be a browser hijacker that is adding links only in your browser, please try viewing your site in incognito mode, or try installing another browser, different from the one you are using.
Then you could use both at the same time to see if it shows. There used to be a tool to remove these scripts “Hijack Me” but I see it’s not active anymore, perhaps “Malwarebytes” could clean it, it may be worth a try.
Or to check your site, please try the plugin Anti-malware security and brute force firewall
If I could see the link I could help more, please let us know if any of this helps.Best regards,
MikeFebruary 9, 2019 at 12:30 am in reply to: Blog post sidebar displaying 'Pages', 'Categories', 'Archive' — can't change it #1064806Hi,
If I understand correctly, there is a demo setting that shows a sidebar when an empty one is used, please try adding an empty text widget to the sidebar to correct.Best regards,
MikeHey Illingco,
Is it meant to be on other pages? On the /request-a-quote/ page it is styled, or do you want it removed from all pages?
Please include an admin login in the Private Content areaBest regards,
MikeHi,
Sorry, your links do not seem to go to the same page in your screenshot, the linked pages show the text in black:

To reverse the options, so the highest number is on top, Try adding this code to the end of your functions.php file in Appearance > Editor:function reverse_options(){ ?> <script> (function($){ $(document).ready(function(){ var $select = $('select'); var options = $select.find('option:nth-child(n+2)'); // turn the nodelist into an array and reverse it options = [].slice.call(options).reverse(); // add each option back $.each(options, function (i, el) { $select.append($(el)); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'reverse_options');Best regards,
MikeHi,
Sorry this is not one of the options for the portfolio grid, but you could try this solutionBest regards,
MikeHi,
Shall I delete the “enfold-old” folder via ftp and close this thread?Best regards,
MikeFebruary 8, 2019 at 10:48 pm in reply to: Portfolio Categories into a sidebar on a specific page #1064777Hi,
Please see the link in the Private Content area.
On the page “Team Test” I used the “magic wand” to create the shortcode for the “post slider”

with the portfolio as the source and the category “private clients”

I copied the shortcode to a html widget

and now it shows in the sidebar of the page I created, please take a look.
If you use the Widget Options plugin you can choose which page each widget shows on. Is this what you had in mind?Best regards,
MikeHi,
Sorry my mistake, the color is taken from Enfold Theme Options > General Styling > Main Content > Primary color
Please explain what color you would like the buttons, and which buttons. We will try to offer some css for those buttons.Best regards,
MikeFebruary 8, 2019 at 6:13 am in reply to: How do I centre an element both vertically and horizontally in a Grid Row? #1064422Hey DigitalEssence,
Sorry for the late reply, I took a look at your site and it seems the left side box “Gift Vouchers” is center, and only the right side button needs to be adjusted.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.home #av-layout-grid-1 .grid-row-right { vertical-align: middle !important; }Best regards,
MikeHey dlambers,
Sorry for the late reply, but it appears that you have found the solution because your main menu font is white,
Please see the screenshot in Private Content area.
Do you still need assistance with this?Best regards,
MikeFebruary 8, 2019 at 5:41 am in reply to: Portfolio Categories into a sidebar on a specific page #1064410Hey bauchope,
Sorry for the late reply, I took a look at your site but I didn’t find the “teams portfolio” element, can you link to one?
As for showing them in the sidebar, you should be able to copy the element shortcode and display it in a HTML widget, then you can control which pages it shows on the Widget Options plugin.Best regards,
MikeHi,
Sorry for the late reply, to disable the sonar animation, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.av_font_icon.av-icon-style-border .av-icon-char:after { display: none !important; }To change the color, please adjust this css:
@-webkit-keyframes sonarEffect { 0% {opacity: 0.3;} 40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ff0000, 0 0 0 10px rgba(255,255,255,0.5);} 100% {box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ff0000, 0 0 0 10px rgba(255,255,255,0.5);-webkit-transform: scale(1.5);opacity: 0;} } @-moz-keyframes sonarEffect { 0% {opacity: 0.3;} 40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(255,0,255,0.1), 0 0 10px 10px #ff0000, 0 0 0 10px rgba(255,255,255,0.5);} 100% {box-shadow: 0 0 0 2px rgba(255,0,255,0.1), 0 0 10px 10px #ff0000, 0 0 0 10px rgba(255,0,255,0.5);-moz-transform: scale(1.5);opacity: 0;} } @keyframes sonarEffect { 0% {opacity: 0.3;} 40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(255,0,255,0.1), 0 0 10px 10px #ff0000, 0 0 0 10px rgba(255,0,255,0.5);} 100% {box-shadow: 0 0 0 2px rgba(255,0,255,0.1), 0 0 10px 10px #ff0000, 0 0 0 10px rgba(255,0,255,0.5);transform: scale(1.5);opacity: 0;} }There are 3 sets of the same code to target the 3 types of browsers.
Best regards,
MikeHey Eric,
Sorry for the late reply, to change the background color of your coupon field button,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:input#gf_coupon_button.button { background-color: #2634ee !important; }For your first question, there are a lot of different classes for the buttons such as avia-button, big_button, button, buttons, avia_cart_buttons, etc
While you can change the default colors in the Advanced Styling for buttons, the theme also assumes that you want the transparent buttons to also be included. So the best option is to set your default color and then override the transparent buttons with css so they are a different color. You may find some good tips in our button documentation If you want some help overriding certain buttons, just let us know.Best regards,
MikeHey Antonio,
Sorry for the late reply, unfortunately I’m not able to reproduce this error on Chrome, Firefox, Edge in development mode or on Android. I see your screenshots are from a iPhone, so I wrote this css to target only the iPhone.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@supports (-webkit-overflow-scrolling: touch) { #top.page-id-396 .entry-content-wrapper,#top.page-id-416 .entry-content-wrapper { padding-top: 150px !important; } }Please try adjusting the 150px to move the title under your logo where you wish.
Best regards,
MikeHey Sovik,
Sorry for the late reply, please try this css instead of the above:@media only screen and (max-width: 1170px) and (min-width: 768px) { .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item { display: none !important; } .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special { display: block !important; } }Best regards,
MikeHey MeghanNathanson,
Thank you for the link, I took a look and it seems that the font for the blog and the “About” section above are the same, so to match the font size Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:article.post-entry p { font-size: 13px !important; }For the blog titles do you want them to be the same size and color as the “News and Writings” title?
Best regards,
Mike -
AuthorPosts


