Forum Replies Created
-
AuthorPosts
-
Hey journey5956!
This is what I see when I checked the site on Chrome. It works properly but the I think you need to set the Slider width to 100% on Global Settings:
Cheers!
IsmaelHey kecster2!
I’m sorry but can you please post a screenshot of what you’re trying to do
Regards,
IsmaelHey markbener!
Please use this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) { .responsive .boxed#top { width: 100%; } }
Remove browser cache then reload the page a few times.
Cheers!
IsmaelHi!
Dude’s code work properly on my end. Please use this on your child theme’s function.php:
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ /* * Register frontend javascripts: */ if(!is_admin()) { add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100); } function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); wp_dequeue_script('avia-prettyPhoto'); wp_dequeue_style('avia-prettyP'); wp_dequeue_style('avia-custom'); //register js wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false ); } ?>
Then create a js folder inside the child theme folder, create the avia.js file. Add this code:
function avia_lightbox_callback(elements,ww,wh){ (function($){ elements.each(function() { var el = $(this); if(!el.hasClass('noLightbox')) { el.addClass('lightbox'); } }); jQuery('a.lightbox').on('click', function() { return false; }); })(jQuery); }
Please check it again.
Regards,
IsmaelDecember 23, 2013 at 8:56 am in reply to: how can you add a tagline or subheading to all pages for the enfold theme #203194Hi!
You can edit header.php or /includes/helper-main-menu.php if you have 2.6+, find this code:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Below, add this code:
echo "<div class='site-description'>".get_bloginfo ( 'description' )."</div>";
Edit Enfold > Styling > Quick CSS, add this code:
.site-description { bottom: -30px; position: absolute; font-size: 11px; }
Best regards,
IsmaelHi!
You can add this on your custom.css or Quick CSS:
#menu-item-2508 a { background: blue !important; padding: 10px; color: white !important; }
Best regards,
IsmaelHi kecster2!
Use this on your custom.css or Quick CSS:
.avia-button.avia-icon_select-no.avia-color-custom.avia-size-medium.avia-position-center:hover { background-color: red !important; }
Regards,
IsmaelHey!
Just change the color value:
#top #main .sidebar_left .sidebar { border-left: 1px solid rgba(0, 0, 0, 0.3);; }
Change the rgba color to something else.
Best regards,
IsmaelHey!
Just change the color value:
#top #main .sidebar_left .sidebar { border-left: 1px solid rgba(0, 0, 0, 0.3);; }
Change the rgba color to something else.
Best regards,
IsmaelHey!
You can use this on Quick CSS:
.page-id-393 #av_section_5 .avia_message_box { margin: 00px 0; }
Remove browser cache then reload the page.
Best regards,
IsmaelHey Dan!
It is a custom script made by Kriesi. Please hire a freelance developer to modify the theme for you.
Cheers!
IsmaelHey!
@NaturalIntegrative: You can disable the lightbox function. Edit js > avia.js file, find this code on line 54:
//activates the prettyphoto lightbox $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});
Replace it with:
//activates the prettyphoto lightbox //$(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});
Remove browser cache then reload the page a few times.
Regards,
IsmaelHey!
What do you mean by switch order? You can arrange the order of the menu items on Appearance > Menus panel. Create a new menu then set it as Enfold Secondary Menu on Theme Locations option.
Best regards,
IsmaelHi akmhou!
Please use this on functions.php:
add_filter('avia_sidebar_menu_args', 'avia_sort_sidebar_pages',10, 2); function avia_sort_sidebar_pages($args, $post) { $args['sort_column'] = 'ID, post_title'; return $args; }
Best regards,
IsmaelHey!
After you click the “Add Media” button, select the size of the image that you want to use on ATTACHMENT DISPLAY SETTINGS > Size.
Cheers!
IsmaelHey!
You can experiment with this css modification to increase the height of the slider images on mobile view.
@media only screen and (max-width: 767px) { .av_slideshow_full li img { border-radius: 0px; min-height: 200px; min-width: 500px; margin-left: -200px; } }
Regards,
IsmaelHi wholereneducation!
It loads fine on my end. On what browser are you testing it with? Please remove browser cache then reload the page.
Best regards,
IsmaelHey Imburr!
Please refer to this link and follow Dude’s instruction: https://kriesi.at/support/topic/script-for-google-analytics-link-tracking/
Cheers!
IsmaelHi!
Can we please check it again? It is currently under maintenance. Please post a screenshot of the issue.
Regards,
IsmaelHi!
Like Devin said, you should not modify anything on the theme files because it will be overwritten when you update the theme. You should add the css modifications on the Enfold > Styling > Quick CSS. You need to add it again on Quick CSS or ask your host to do a backup restore if they have any.
Best regards,
IsmaelHi!
It looks ok on Chrome. It looks broken because some of the portfolio items doesn’t have featured images yet.
Regards,
IsmaelHi nini_bacher!
Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 642:
$output .= " <a href='".$img[0]."' class='portolio-preview-list-image' title='".$description."'><img src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";
Replace it with:
$output .= " <a href='".$img[0]."' class='portolio-preview-list-image noLightbox' title='".$description."'><img src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";
Remove browser cache then reload the page. You can also add this on your custom.css or Quick CSS to disable the image link entirely:
.portolio-preview-list-image { pointer-events: none; }
Cheers!
IsmaelHi!
You can disable the “Minify CSS files automatically?” option.
Best regards,
IsmaelHey akmhou!
Yes, you can change that on your child theme’s header.php if you want the site to enable zoom on mobile devices. If it doesn’t work you can try this:
<meta name="viewport" content="user-scalable = yes">
Best regards,
IsmaelHi mrivas1804!
Use the WPML plugin. You can download the language pack here, extract it on the theme’s lang folder: Spanish: http://bit.ly/enfold-es_ES
Regards,
IsmaelHi David!
You can adjust the width of the featured image using this:
.fullsize .big-preview.single-big { max-width: 1000px; }
Best regards,
IsmaelHi katana!
Have you tried uploading a larger image? Maybe, double the size of the usual. Try this plugin: http://wordpress.org/plugins/wp-retina-2x/
Best regards,
IsmaelHi!
Please give us a link to the website. Have you tried removing the browser cache? Test it on another browser. Go to Appearance > Menus and set the Theme Locations > Enfold Main Menu and Enfold Secondary Menu.
Best regards,
IsmaelHey Michael!
Can you please give us a link to the website? Post the login details here as a private reply. We would like to inspect the elements.
Cheers!
IsmaelDecember 20, 2013 at 6:22 am in reply to: Enfold > Masonry blog > static masonry category, Hover over title + excerpt #202438Hi David!
I’m sorry but you need to hire a freelance developer to customize the theme for you. You can hire someone from http://werkpress.com/.
Best regards,
Ismael -
AuthorPosts