Forum Replies Created
-
AuthorPosts
-
Hi!
I checked the website but I don’t see any header image. Can you please post a screenshot explaining the issue?
Cheers!
IsmaelHi marienoisette!
Please add this one to vertically align the breadcrumb:
.title_container .breadcrumb { margin-top: 0; } #top .title_container .container { padding: 0px 0px 6px 0px; min-height: 30px; } .title_container .main-title { top: 9px; }Best regards,
IsmaelHey talelie!
Basically, you can use the WPML plugin and add the chinese language as one of the translation. You can expect a lot of missing translations for strings so you may need to use this plugin to translate them: http://wordpress.org/plugins/codestyling-localization/
Regards,
IsmaelHi!
The font size is not changing. Please use this:
@media only screen and (max-width: 479px) { .av_phone_active_right .phone-info { width: 100% !important; text-align: center !important; font-size: 11px !important; } }Cheers!
IsmaelHey anfinnweb!
You can download the font face kit here: http://www.fontsquirrel.com/fonts/open-sans
Add the font using font face: http://www.w3schools.com/cssref/css3_pr_font-face_rule.asp
Regards,
IsmaelHi!
Kriesi removed the drop-down mobile menu. You can only use the slideout menu for mobile devices. Please go to Enfold > Header then reconfigure the header settings. Simply saving the settings should fix it.
Cheers!
IsmaelHey Frostholm!
Thank you for using the theme. I hope you’re doing great.
1.) Either way is fine. You can manually add the url of the page or select it on the pages drop-down if available.
2.) Did you set it on Enfold > Header > Header Layout > Header Title and Breadcrumbs? You can also override the settings for each page on Layout > Title Bar Settings. If that doesn’t work, add this on Quick CSS or custom.css:
.page-id-23204 #main > div.stretch_full.container_wrap.alternate_color.light_bg_color.title_container > div > div.breadcrumb { display: none; }3.) You can set a min height for the title container or special heading. Something like this:
div.flex_column div.av-special-heading { min-height: 70px; }Cheers!
IsmaelHey Lubomirs!
You can edit header.php, find this code:
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">You can edit the meta attributes if you want.
Best regards,
IsmaelHey chiummog!
Please add this on Quick CSS or custom.css:
#customer_login > div.col-1 > form > p.lost_password { margin: 0 0 10px 5px; position: relative; left: 5px; top: -12px; } form.login, #top form.register { padding-bottom: 50px; }Best regards,
IsmaelHi!
Thank you for using the theme. I hope you’re doing great.
The styling of woocommercep pages such as my account is set to the default. Altering them will require a lot of modifications and is beyond the scope of support. Please hire a freelance developer to modify certain woocommerce page layout. For further customization, please visit Werkpress. I’ll check the other thread which issue is specific to the account page.
Regards,
IsmaelMarch 25, 2014 at 5:05 am in reply to: we have deleted main menu some products and then try to add in main menu #242521Hey comprompt!
Please go to Appearance > Menus. Did you set the menu as Enfold Main Menu on Theme Locations option? The website does not exist. Please post the correct url.
Regards,
IsmaelHey!
I’m sorry but we don’t give support for third party plugins. Please contact the plugin author. Try to disable the default lightbox on js > avia.js, find this code on line 52:
//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'});Regards,
IsmaelHi lionstail!
Are you trying to add them on pages? You can add the comments form element using the Advance Layout Builder.
Cheers!
IsmaelHey G_T_M!
Please refer to this link: https://kriesi.at/support/topic/adding-featured-images-to-the-search-result/
This should use the featured images of posts and pages for search results.
Best regards,
IsmaelHey IHEA!
Add this on Quick CSS or custom.css:
@media only screen and (max-width: 767px) { .responsive #top #header { position: fixed; } }Best regards,
IsmaelHey JochenBake!
Did you set the offset to automatic? Please post the login details here and set it as a private reply. We would like to check it.
Regards,
IsmaelHey Kimberly!
Can you please give us a link to the website? What kind of blog style did you use? Add this on Quick CSS to adjust the width of the fullwidth blog layout:
#top .fullsize .template-blog .post .entry-content-wrapper > * { max-width: 1200px; margin-left: auto; margin-right: auto; text-align: center; } #top .fullsize .template-blog .post .entry-content-wrapper { max-width: 1200px; }Regards,
IsmaelHey!
Please post the login details here and set it as a private reply. We would like to check it. I checked it on Firefox, the layer slider and other images are showing properly.
Regards,
IsmaelHey dejongfreek!
You can use the plugin Contact Form 7 or Gravity Forms. You can specify a redirect page after the form is sent.
Best regards,
IsmaelHey!
@talelie: I’m sorry but there is no chinese translation yet. I’m sure there are chinese websites made using enfold but they haven’t shared the po and mo files yet.Cheers!
IsmaelHey!
AFAIK the responsive under option will trigger the layers container option. When viewing on screen sizes below 1470px, the elements will be constrained inside the width specified on the layers container.
Best regards,
IsmaelHey!
Please edit functions.php, find this code on line 16:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
add_theme_support('avia_template_builder_custom_css');On the homepage, add a fullwidth slider then add a “Custom Css Class”. Just scroll at the very bottom to see the field. What we’re trying to do is to show layerslider on desktop view then swap the fullwidth slider when viewing on mobile devices. Let’s add “sample-slider” to the “Custom Css Class” field of the fullwidth slider. Add this on Quick CSS or custom.css:
@media only screen and (min-width: 769px) { .sample-slider { display: none !important opacity: 0 !important; } } @media only screen and (max-width: 768px) { .sample-slider { display: block !important opacity: 1 !important; } #layer_slider_1 { display: none !important; } }Cheers!
IsmaelHey chiummog!
Sorry for closing the topic. You can add this on Quick CSS or custom.css:
#header .avia_mega_div img { max-width: 100% !important; width: 250px; }Best regards,
IsmaelHey!
Can you reproduce the issue on a default theme? Please try to edit wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php, find this code:
if(!is_admin() && !session_id()) session_start();Replace it with:
if(!is_admin() && session_id() == "") session_start();Regards,
IsmaelHi!
Yes, you can add something like on Quick CSS:
.blank-content { display: block; height: 30px; }Best regards,
IsmaelHey!
Please try to add this on functions.php to fix the portfolio breadcrumbs:
add_action('after_setup_theme','avia_remove_portfolio_breadcrumb'); function avia_remove_portfolio_breadcrumb(){ remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb'); }Best regards,
IsmaelHey!
The “Slideshow Image Size” refers to the size of the thumbnail that is going to be use on the Easy Slider. It won’t change the size of the actual slider. You can add this on Quick CSS if you want to specify the height of the slider:
.avia-slideshow-inner { height: 300px !important; }Best regards,
IsmaelHey CreatorsCreations!
I’m sorry but that’s not possible with the theme yet and adding the feature is beyond the scope of support. Please hire a freelance developer to modify the masonry gallery. For further customization, please visit Werkpress.
Anyway, you can achieve the same thing using the portfolio items. Edit a portfolio item then look for “Overwrite Portfolio Link setting”, set it to “Define custom link”. Add the url of youtube or vimeo video. Create a page then add the fullwidth masonry element, choose the Portfolio entries.
Cheers!
Ismael -
AuthorPosts
