Forum Replies Created
-
AuthorPosts
-
Hi!
Do you mind creating a temporary admin login and posting it here privately so we can look into it?
Cheers!
YigitHi!
You can find image sizes defined in Functions.php file below
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider $avia_config['imgSize']['featured_large'] = array('width'=>1500, 'height'=>630 ); // images for fullsize pages and fullsize slider $avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns $avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['magazine'] = array('width'=>710, 'height'=>375 ); // images for magazines $avia_config['imgSize']['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); // images for fullscreen masonry $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider //overwrite blog and fullwidth image on extra large layouts if(avia_get_option('responsive_layout') == "responsive responsive_large") { $avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider }Best regards,
YigitHi Marc!
Please use following code in Quick CSS field
.avia_textblock p { font-size: 16px; }Regards,
YigitHey!
Please create a child theme ( http://kriesi.at/documentation/enfold/using-a-child-theme/ ) and move your modified files from parent theme to child theme and then update parent theme via FTP
@jp_73 Thank you! :)Cheers!
YigitHey Rupert!
Please add following code to Quick CSS as well
.custom-header-image { margin-top: -3px; }and please remove
target='_blank'from the code i posted here – https://kriesi.at/support/topic/header-issues-6/#post-300590Regards,
YigitHi!
Can you try deactivating all active plugins and check if that helps? Do you have any custom CSS code that might cause the issues?
We do provide support to Kriesi theme users here.Regards,
YigitAugust 8, 2014 at 12:50 pm in reply to: How to copy or duplicate a standard configured website? (on a separate license) #301598Hi Marc!
Please see – http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
Cheers!
YigitHi zchristos!
You can enable debugging mode to see shortcodes you have created in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
then you can create any of them and copy/paste shortcode into any other content element or into text widget.Regards,
YigitHi!
It seems like we do not have Finnish language files yet. You can translate it using this tool – http://poedit.net/
I am not sure if there are similarities between languages but you can download Norwegian and Swedish translations here if they would help – https://www.dropbox.com/s/wflq825g904a290/Sv%20%26%20No.zipCheers!
YigitAugust 8, 2014 at 12:38 pm in reply to: Main menu font size and color. Different search icon size #301588Hi Franck!
Solved on your other topic – https://kriesi.at/support/topic/different-headers-on-targeted-pages/#post-301561
Regards,
YigitAugust 8, 2014 at 12:31 pm in reply to: Main menu font size and color. Different search icon size #301584Hi!
You can check “Apply only to mouse hover state” – http://i.imgur.com/zOC8P3C.png and please add following code to Quick CSS in Enfold theme options under General Styling tab to adjust font weight
.main_menu ul:first-child > li > a { font-weight: 500l; }Best regards,
YigitHey!
@kersoz mentioned that he cannot speak English very well. He would like to add icons to the right side of header meta. If you have any questions or issues, feel free and start a new topicBest regards,
YigitHi Luke!
Please use following code instead
# # wrap single product image in an extra div # add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2); add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20); function avia_add_image_div() { echo "<div class='three units single-product-sidebar alpha'>"; get_sidebar(); echo "</div>"; echo "<div class='four units single-product-main-image'>"; } function avia_close_image_div() { global $avia_config; $avia_config['currently_viewing'] = "shop_single"; echo "</div>"; } # # wrap single product summary in an extra div # add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25); add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3); function avia_add_summary_div() { echo "<div class='five units single-product-summary'>"; } function avia_close_summary_div() { echo "</div>"; //close out the summary }Regards,
YigitHi!
@reederjack5252 Please go to Enfold theme options > Header Layout > Mobile Menu > Header Mobile Menu activation and choose 990px.
@erikatzen – https://kriesi.at/support/topic/menu-error-4/Best regards,
YigitHi Denis!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.header_color .main_menu ul:first-child >li > ul, #top .header_color .avia_mega_div > .sub-menu { border-top-color: red; } .header_color .avia-menu-fx { background-color: orange; }Best regards,
YigitHey gayleen!
You may be using an older version of the theme. Please update Enfold to the latest version 2.9.1 via FTP – http://vimeo.com/67209750
If you still have missing elements in ALB after updating the theme, please create a temporary admin login and post it here privatelyBest regards,
YigitAugust 8, 2014 at 12:05 pm in reply to: How to remove the post title in breadcrumb of portfolio page? #301570Hey Enffie
Please flush browser cache and refresh your page a few times. It does work fine on my end – http://i.imgur.com/KhDxIEd.png
Cheers!
YigitHey Richard!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 990px) { .page-id-2 .container .twelve.units { width: auto; }}Best regards,
YigitHi!
You are welcome, glad we could help! Have a great weekend! :)
Best regards,
YigitHey!
Can you copy&paste the exact error here? If you API key is correct, it should work fine, as it does for many other users.
Also, you are using a very old version, after updating the theme, you may need to re-configure header options – http://vimeo.com/channels/aviathemes/91837491Regards,
YigitHi sunstarcomposites!
Please refer to Ismael’s post here – https://kriesi.at/support/topic/enfold-social-media-links-at-top-yelp/#post-290732
Regards,
YigitAugust 8, 2014 at 11:49 am in reply to: Main menu font size and color. Different search icon size #301557Hi foxtrotstudio!
1- Please go to Enfold theme options > Advanced Styling and edit “Main menu links”
2- Please refer to Ismael’s post here – https://kriesi.at/support/topic/enfold-social-media-links-at-top-yelp/#post-290732Best regards,
YigitAugust 8, 2014 at 11:46 am in reply to: How to remove the post title in breadcrumb of portfolio page? #301555Hi Enffie!
Please try adding following code to Quick CSS in Enfold theme options under General Styling tab
.breadcrumb-trail span.sep:nth-child(5), span[typeof="v:Breadcrumb"]:nth-child(6) { display: none; }if that does not work, please post the link to your website
Cheers!
YigitHey!
Please try adding following code to Quick CSS
.av-main-nav > li:last-child > a span.avia-menu-text { border-right: none; }That should do it :)
Cheers!
YigitMerhaba Fatih,
Tamamdir! Rica ederim :)
Bu arada yeni konu acmak istersen ( https://kriesi.at/support/forum/enfold/#new-topic-0 ) mesaj iceriginde Yigit yazarsan arkadaslar bana haber verecektir– Yigit
Hi!
This is how it looks on my end – http://i.imgur.com/Ba8ciz3.png
Please add following code to Quick CSS as well to move next button closer to the edge#top .avia-layerslider .ls-nav-next { right: 0; }Best regards,
Yigit -
AuthorPosts
