Forum Replies Created
-
AuthorPosts
-
Hi!
I am sorry but i do not understand. Can you please elaborate? If you can post a screenshot and show the changes you would like to make that would help
Cheers!
YigitSeptember 3, 2014 at 12:38 pm in reply to: Problem with comments count icon on a portfolio page #312785Hi!
You are welcome, glad we could help :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)Regards,
Yigit-
This reply was modified 10 years, 7 months ago by
Yigit.
Hi!
Please add following code to Quick CSS as well
.avia-desc-col li.avia-pricing-row { min-height: 115px; }Regards,
YigitHi!
Glad it is working fine now! Let us know if you have any other questions or issues
Cheers!
YigitHi DarkNemos!
Please adjust “responsive under” and “layers container” values in LayerSlider WP > Slider Settings > Layout – http://i.imgur.com/E2YOJ5x.png
Regards,
YigitSeptember 3, 2014 at 12:21 pm in reply to: Problem with comments count icon on a portfolio page #312776Hi nelsonbeguin!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
span.comment-count:nth-child(2) { display: none; }Regards,
YigitSeptember 3, 2014 at 12:17 pm in reply to: Iconbox – is it possible to add our own image to the icons? #312774Hi!
This is how it looks on my local installation – http://i.imgur.com/Y7M3Rvr.png
Please post the link to your website when you launch it so we can take a look. We cannot say what is wrong without seeing your website, especially when the code works totally fine on our end.Regards,
YigitHey patriscia!
Please go to Appearance > Widgets and add “Pages” or “Custom Menu” widget to your sidebar widget area
Cheers!
YigitHi!
You can try following code in Quick CSS
.single .main-title.entry-title a { display: none; } .single .main-title.entry-title:after { content: 'My title here'; } .single .main-title.entry-title { pointer-events: none; }But text would be still in the source code and as Gunter said, you are going to need to stick to other ways.
Cheers!
YigitHey!
Weird :/ Can you try deactivating all active plugins and check if that helps?
Best regards,
YigitHi!
There are single quotes in the beginning and at the end of both codes, please do not add them. It should start with “function…” and end with “}”
Cheers!
YigitHi ProAnts!
Please go to Enfold/framework/php folder and open class-framework-widgets.php file and find
` function widget($args, $instance) { // prints the widget extract($args, EXTR_SKIP); $twitter = empty($instance['twitter']) ? '' : $instance['twitter']; $rss = empty($instance['rss']) ? '' : $instance['rss']; $rss = preg_replace('!https?:\/\/feeds.feedburner.com\/!','',$rss); if(!empty($twitter) || !empty($rss)) { $addClass = "asc_multi_count"; if(!isset($twitter) || !isset($rss)) $addClass = 'asc_single_count'; echo $before_widget; $output = ""; if(isset($twitter)) { $link = 'http://twitter.com/'.$twitter.'/'; $before = apply_filters('avf_social_widget', "", 'twitter'); $output .= "<a href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>"; } if($rss) { $output .= "<a href='$rss' class='asc_rss $addClass'>".apply_filters('avf_social_widget',"", 'rss')."<strong class='asc_count'>".__('Subscribe','avia_framework')."</strong><span>".__('to RSS Feed','avia_framework')."</span></a>"; }`and change it to
` function widget($args, $instance) { // prints the widget extract($args, EXTR_SKIP); $twitter = empty($instance['twitter']) ? '' : $instance['twitter']; $facebook = empty($instance['facebook']) ? '' : $instance['facebook']; if(!empty($twitter) || !empty($rss)) { $addClass = "asc_multi_count"; if(!isset($twitter) || !isset($rss)) $addClass = 'asc_single_count'; echo $before_widget; $output = ""; if(isset($twitter)) { $link = 'http://twitter.com/'.$twitter.'/'; $before = apply_filters('avf_social_widget', "", 'twitter'); $output .= "<a href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>"; } if(isset($facebook)) { $link = 'http://facebook.com/kriesi.at/'; $before = apply_filters('avf_social_widget', "", 'facebook'); $output .= "<a href='$link' $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Facebook','avia_framework')."</span></a>"; }`Please do not forget to change Facebook link
Cheers!
YigitSeptember 2, 2014 at 10:41 pm in reply to: I dont see favicon, the site is constantly in loading mode #312537Hey Soapmarine!
I checked your website on Firefox 32 on OS X 10.9.4 and favicon shows up fine on my end – http://i.imgur.com/w3ltwxg.png
Cheers!
YigitHey!
1- Can you firstly uncheck “Let logo and menu position adapt to browser window” in Enfold theme options > Header Layout > Header Behaviour?
2- Please add following code to Quick CSS.avia-button { border-radius: 25px!important; }3- Please post the link to your page where we can see an example
4- Please refer to my post here – https://kriesi.at/support/topic/how-to-control-the-css-in-widget/#post-310956Regards,
YigitHi!
Please go to Users > Add New and create a new user with Administrator role. You can use (Email address hidden if logged out) as email address but please post login credentials here
Regards,
YigitHi NickyCheese!
Please go to Enfold/framework/php folder and open function-set-avia-frontend.php and find
$title = get_bloginfo('name').' | ';and change it to
$title = get_bloginfo('name').'';Cheers!
YigitHi elianab!
Please go to Appearance > Editor and open Functions.php and find&edit image sizes
$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 }then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
Cheers!
YigitSeptember 2, 2014 at 10:11 pm in reply to: Shrink the distance between Main Menu and bottom of header #312522Hi!
You are welcome Michael, glad we could help :)
You too have a nice evening!Best regards,
YigitHey!
Answered you here already – https://kriesi.at/support/topic/display-a-banner-or-written-info-in-header/#post-312518
Regards,
YigitHi!
@pachanights You are welcome :)
@alexrvs after adding the code to Functions.php file you should adjust its position using the code i posted here – https://kriesi.at/support/topic/display-a-banner-or-written-info-in-header/#post-312446Cheers!
YigitHey rubieandersson!
Please go to Enfold theme options > General Styling tab and adjust element colors
Regards,
YigitHey jeffreyvanoostrom!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.avia-desc-col li.avia-pricing-row { font-size: inherit; font-weight: inherit; }Cheers!
YigitHey solarmediapro!
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.
There are so many shortcodes with so many options so we do not have a list of shortcodes. Also all pages on demo site created using Advanced Layout BuilderCheers!
YigitHey!
Glad you figured it out!
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)Regards,
YigitHi!
Do you mind creating a temporary admin login and posting it here privately so we can look into it?
Cheers!
YigitSeptember 2, 2014 at 7:16 pm in reply to: Shrink the distance between Main Menu and bottom of header #312468Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.main_menu ul:first-child > li a .avia-menu-text { top: 20px; position: relative; }Regards,
YigitSeptember 2, 2014 at 6:11 pm in reply to: Shrink the distance between Main Menu and bottom of header #312450Hi Michael!
thank you for choosing Enfold and welcome to our forum!
Can you please post the link to your website so we can provide you an accurate custom CSS code? :)Best regards,
YigitHi!
Please add following code to Quick CSS and adjust as needed
.my-custom-content { position: relative; left: 50px; color: red; font-size: 18px; }Cheers!
YigitHey!
Please add following code to Quick CSS as well
#top #header .avia_mega_div > .sub-menu { padding: 0; }and change following line
#top #header .avia_mega_div > .sub-menu > li { padding: 0; border: none; width: auto!important; }to
#top #header .avia_mega_div > .sub-menu > li { padding: 0; border: none; width: 100%; }Cheers!
YigitHey!
You should go to Appearance > Editor and open functions.php file and add the code Ismael posted and change “ADD ANY CONTENT HERE!” with HTML code of your content as following
function ava_extra_header_element() { ?> <div class='my-custom-content'>Here goes my text!</div> <?php } add_action('ava_main_header', 'ava_extra_header_element');Regards,
Yigit -
This reply was modified 10 years, 7 months ago by
-
AuthorPosts
