Forum Replies Created
-
AuthorPosts
-
Hi Perry,
Has this been resolved? I don’t see this issue, can you add a screenshot?Best regards,
MikeHey Danielle,
Please try adding this code to the Quick CSS section under Enfold > General Stylingspan.blog-categories.minor-meta { display: none!important; }
Best regards,
MikeHey Michael,
This issue is the .post_delimiter set to left: -1500px;
Your can set it to left: 0px; in the General Styling > Quick CSS field:
to have a line between posts.post_delimiter { left: 0px; }
or to display: none; to hide it
.post_delimiter { display: none; }
Best regards,
MikeFebruary 19, 2017 at 12:33 am in reply to: Page not loading, issue with theme or quick css code? #748923Hey lucindaholland,
I belive your error is due to the .htaccess file in your Gravity Forms folder, giving a status of 403 (Forbidden) for the directory /config-gravityforms/
You can read about this at https://www.gravityhelp.com/documentation/article/security/#the-htaccess-file
Best regards,
MikeFebruary 18, 2017 at 11:44 pm in reply to: disable image links on simple gallery doesn't work #748912Hey Doron,
could you try choseing ‘no, don’t add link to the images at all’ and saving again?
Or send an admin login, in the private data, so I can look closerBest regards,
MikeHey Dave,
To have a sticky menu check the box at Enfold Theme Options > Header > Header behavior > Sticky Header
To have the logo hidden in the sticky menu upload your logo at Enfold Theme Options > Header > Transparency Options
Sorry, padding the top of the menu does not give the effect you are looking for without making the whole menu transparent, which would make the menu hard to see.Best regards,
MikeFebruary 18, 2017 at 11:04 pm in reply to: Accept "Terms & Conditions" larger on checkout page using Woocommerce? #748905Hey jancecile,
You can increase it’s size by using this code in the General Styling > Quick CSS field:#top label.checkbox { font-size: 1.2em;
Please note that it’s size now is 0.92em, so try 1.2, 1.5, etc to you see the size you like. Also note it’s size & placment is based on Woocommerce & not Enfold.
But I hope I was helpful :)Best regards,
MikeHey ianazi,
You can place your socket statement in Enfold Theme Options > Footer > Copyright.
You can also use the code below for the heart, and I found that searching Google for “translation to Arabic” gave a Google translation box to copy and paste from.❤
Best regards,
Mike- This reply was modified 7 years, 8 months ago by Mike.
Hey mikschne,
To hide the logo when scrolling down, ensure your logo is in Enfold Theme Options > Header > Transparency Logo
After that, use this code in the General Styling > Quick CSS field:.header-scrolled .logo img { display: none; }
Best regards,
MikeHey Oversberg,
You can change the blue menu button to green by adding this code in your Enfold Theme Options > General Styling > Quick CSS field:#top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text { background: #83A846; border: none; }
You can add a icon shortcode, or an image HTML code, beside the text on the Navigation Label. For example:
<span class="av-icon-char" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span>
Best regards,
MikeHey Alexander,
If you want a search bar inside the mobile menu, add this in the functions.php file:add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 ); function avf_add_search( $items, $args ) { if ($args->theme_location == 'avia') { $search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-5">'.get_search_form(false).'</li>'; $items = $search . $items; } return $items; }
After that, use this code in the Quick CSS field:
@media only screen and (max-width: 767px) { #top #searchform>div { display: block !important; opacity: 1 !important; } }
Best regards,
Mike -
AuthorPosts