Forum Replies Created
-
AuthorPosts
-
Hi Justin!
That error means that the slider you are trying to load does not exist. Make sure your slider alias/name doesn’t have special characters or spaces.
Best regards,
JosueTry adding this code to the Quick CSS:
#google_translate_element{ line-height: initial !important; }To change its position reference the previous codes in this thread.
Regards,
JosueHi!
Add this too:
.av-magazine-hero .av-magazine-thumbnail img { height: auto !important; }Cheers!
JosueHey!
I believe this is expected, the sample slider you are using in your homepage was not included in the Enfold bundled LayerSlider, these are the working sample sliders included in Enfold:

Best regards,
JosueAugust 10, 2014 at 2:28 am in reply to: How to see table shortcode in post in a visual view? #302104Hey Tom!
Not really, actually there is a way to have comments on ALB, look for the “Comments” element (Content Elements).

Regards,
JosueHey Trevor!
1. Add this to the Quick CSS:
@media only screen and (min-width: 480px) and (max-width: 767px) { .responsive #top #wrap_all .grid-sort-container .grid-entry{ width: 50% !important; margin-bottom: 0 !important;} }2. Could not note that. Can you please tell me the exact width when this happens? a screenshot may be helpful too.
Best regards,
JosueTry with this:
.page-id-1129 table.avia-table td:nth-child(2n), .page-id-1129 table.avia-table td:nth-child(3n) { text-align: center; }Discard my previous suggestion, use this code instead:
.page-id-1129 table.avia-table td { text-align: center; }Cheers!
JosueHi!
Try with this instead:
.page-id-1129 .avia-table td .av_font_icon { text-align: left; }Best regards,
JosueHi!
If you want to disable the shadow hover animation (on mobile) try with this:
@media only screen and (max-width: 767px) { a.av-icon-char:after { display: none !important; } }Cheers!
JosueHey!
Try adding this code to the Quick CSS:
td .av_font_icon { text-align: left; }Cheers!
JosueHey!
Try adding this code to the Quick CSS in both sites:
.author-title, .author-title span{ font-family: ‘Source Code Pro’, ‘Consolas’, ‘Andale Mono’, ‘Lucida Console’, ‘Lucida Sans Typewriter’, ‘Monaco’, ‘Courier New’, monospace !important; }Cheers!
JosueAugust 9, 2014 at 11:20 pm in reply to: Insert search button and widget area in the secondary menu bar #302083Ok, let me know :)
August 9, 2014 at 10:56 pm in reply to: Insert search button and widget area in the secondary menu bar #302080Hi,
I can try but i’d need FTP access, can you please create me an temporary FTP account? post it here as a private reply.
Regards,
JosueYou are welcome, glad we could help :)
Regards,
JosueHi!
Looks the same in German:
http://www.tennisgate.com/de/author/edgar/What font should that be?
Regards,
JosueHi!
If you are using a Child Theme you can use this code in functions.php to load your modified css/base.css file:
function wp_change_basecss() { if(!is_admin()){ wp_dequeue_style( 'avia-base' ); wp_enqueue_style( 'avia-base-child', get_stylesheet_directory_uri().'/css/base.css', array(), '2', 'all' ); } } add_action( 'wp_enqueue_scripts', 'wp_change_basecss', 100 );Cheers!
JosueLooks like you got it working with the plugin @urlatore mentioned :)
Best regards,
JosueAugust 9, 2014 at 7:42 pm in reply to: Insert search button and widget area in the secondary menu bar #302051Hi,
Try this method instead, open functions-enfold.php and look for line 63:
if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))Replace it by this:
if ((is_object($args) && $args->theme_location == 'avia2') || (is_string($args) && $args = "fallback_menu"))Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueHi Christian!
1. Use a Text block with a class assigned, then color it with CSS:
.colored_textblock{ background: red; padding: 20px; }2. You can use a Color Section with an ID assigned, then to make its content full width:
#fullwidtharea .container{ width: 100% !important; }Regards,
JosueHi,
Can you post the link to the Page in question please?
Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueAugust 9, 2014 at 10:59 am in reply to: How to see table shortcode in post in a visual view? #301965You are welcome Tom, always glad to help :)
Regards,
JosueHi Tom!
Those drawbacks will only occur with Posts with ALB activated, from what you describe i believe this table is in one individual post.
Cheers!
JosueHi!
Yes, but the code is now working. For example on Chrome: http://screencast.com/t/e4EJsYLe0xt
Debugging it for the other browsers is on your own :)
Best regards,
JosueAugust 9, 2014 at 6:11 am in reply to: How to copy or duplicate a standard configured website? (on a separate license) #301921Hey!
I think it would be better to consult Envato support regarding this issue:
https://support.market.envato.com/hc/en-us/requests/newBest regards,
JosueHi!
If i understood correctly you want that footer widget to be exempt from the Post Types Order effect?
Regards,
JosueAugust 9, 2014 at 5:27 am in reply to: Insert search button and widget area in the secondary menu bar #301918Hey!
Try adding this at the very end of your theme functions.php file:
add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 ); add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 ); function avia_append_search_nav ( $items, $args ) { if(avia_get_option('header_searchicon','header_searchicon') != "header_searchicon") return $items; if ((is_object($args) && $args->theme_location == 'avia2') || (is_string($args) && $args = "fallback_menu")) { global $avia_config; ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"> <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </li>'; } return $items; }Cheers!
Josue -
AuthorPosts
