Viewing 30 results - 133,981 through 134,010 (of 142,578 total)
  • Author
    Search Results
  • #219162

    Topic: bbpress SideBars

    in forum Enfold
    toddgeist
    Participant

    Hello,

    Whats the best way to control what SideBars are shown with BBPress forums, topics and replies?

    I don’t see the Avia Layout configurator where I can normally choose the SideBar.

    Thanks

    Todd

    #219137

    In reply to: Removing all borders

    Hi Benjaminlivingthebrand!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .main_color, .main_color div, .main_color header, .main_color main, .main_color aside, .main_color footer, .main_color article, .main_color nav, .main_color section, .main_color span, .main_color applet, .main_color object, .main_color iframe, .main_color h1, .main_color h2, .main_color h3, .main_color h4, .main_color h5, .main_color h6, .main_color p, .main_color blockquote, .main_color pre, .main_color a, .main_color abbr, .main_color acronym, .main_color address, .main_color big, .main_color cite, .main_color code, .main_color del, .main_color dfn, .main_color em, .main_color img, .main_color ins, .main_color kbd, .main_color q, .main_color s, .main_color samp, .main_color small, .main_color strike, .main_color strong, .main_color sub, .main_color sup, .main_color tt, .main_color var, .main_color b, .main_color u, .main_color i, .main_color center, .main_color dl, .main_color dt, .main_color dd, .main_color ol, .main_color ul, .main_color li, .main_color fieldset, .main_color form, .main_color label, .main_color legend, .main_color table, .main_color caption, .main_color tbody, .main_color tfoot, .main_color thead, .main_color tr, .main_color th, .main_color td, .main_color article, .main_color aside, .main_color canvas, .main_color details, .main_color embed, .main_color figure, .main_color fieldset, .main_color figcaption, .main_color footer, .main_color header, .main_color hgroup, .main_color menu, .main_color nav, .main_color output, .main_color ruby, .main_color section, .main_color summary, .main_color time, .main_color mark, .main_color audio, .main_color video, #top .main_color .pullquote_boxed, .responsive #top .main_color .avia-testimonial, .responsive #top.avia-blank #main .main_color.container_wrap:first-child, #top .main_color.fullsize .template-blog .post_delimiter { border: none; border-color: transparent; }

    Cheers!
    Yigit

    #219136

    In reply to: Fix header to top

    Hey zibaloon2!

    Can you post the link to your website so we can take a look? If you choose to display one of fixed headers in Enfold theme options > Header tab, it should be fixed at the top

    Best regards,
    Yigit

    #219124

    Hi Brandon!

    Please refer to Ismael’s post here https://kriesi.at/support/topic/6-columns-in-footer/#post-138601

    Cheers!
    Yigit

    #219122

    In reply to: Search Submit Button

    Hi Yigit,

    That solved it. I need both to accomplish it:

    .avia_mobile #top #searchsubmit, .avia_mobile .ajax_load {
    height: 42px;
    }

    and

    #top #searchsubmit, .ajax_load {
    height: 42px !important;
    }

    Thank you! Case closed!

    #219089

    I get this error message … what am I missing?

    add_filter( 'wp_nav_menu_items', 'avia_append_paypal', 10, 2 );

    function avia_append_paypal ( $items, $args )
    {

    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
    {
    global $avia_config;
    ob_start();
    ?>

    <!– <form action=”https://www.paypal.com/cgi-bin/webscr&#8221; method=”post” target=”_top”>
    <input type=”hidden” name=”cmd” value=”_s-xclick”>
    <input type=”hidden” name=”hosted_button_id” value=”EZHM85HZJNUKL”>
    <input type=”image” src=”https://www.paypalobjects.com/en_US/i/btn/btn_buynow_SM.gif&#8221; border=”0″ name=”submit” alt=”PayPal – The safer, easier way to pay online!”>

    </form>

    –>
    ""

    <?php
    $paypal_link = ob_get_clean();

    $items .= '<li id="menu-item-paypal" class="noMobile menu-item">'.$paypal_link.'';
    }
    return $items;
    }

    #219088

    Hey Richard!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    .av_promobox { margin-top: 10px; }

    By default top margin is 50px

    Regards,
    Yigit

    #219081

    Hey davidrk!

    Please try adding following code to Quick CSS in Enfold theme options under Styling tab

    .masonry-not-first, #after_masonry { border: none!important; }
    .av_promobox { margin-top: 10px; }

    Cheers!
    Yigit

    #219068

    Thanks for the response Ismael, but it’s still not working >_<. Here is the entire code for the header.php file, with the code you mentioned added:

    <?php
    	global $avia_config;
    
    	$style 		= $avia_config['box_class'];
    	$responsive	= avia_get_option('responsive_layout','responsive');
    	$blank 		= isset($avia_config['template']) ? $avia_config['template'] : "";
    	$headerS	= !$blank ? avia_header_setting() : "";
    	$headerMenu = $responsive ? avia_get_option('header_menu','mobile_drop_down') : "";
    
    ?>
    <!DOCTYPE html>
    <html <?php language_attributes(); ?> class="<?php echo " html_$style ".$responsive." ".$headerS;?> ">
    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <meta name="format-detection" content="telephone=yes">
    <title><?php if(function_exists('avia_set_title_tag')) { echo avia_set_title_tag(); } ?></title>
    <!-- page title, displayed in your browser bar -->
    
    <?php
    
    	/*
    	 * outputs a rel=follow or nofollow tag to circumvent google duplicate content for archives
    	 * located in framework/php/function-set-avia-frontend.php
    	 */
    	 if (function_exists('avia_set_follow')) { echo avia_set_follow(); }
    
    	 /*
    	 * outputs a favicon if defined
    	 */
    	 if (function_exists('avia_favicon'))    { echo avia_favicon(avia_get_option('favicon')); }
    
    ?>
    
    <!-- add feeds, pingback and stuff-->
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="alternate" type="application/rss+xml" title="<?php echo get_bloginfo('name'); ?> RSS2 Feed" href="<?php avia_option('feedburner',get_bloginfo('rss2_url')); ?>" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    
    <!-- mobile setting -->
    <?php
    
    if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';
    
    ?>
    
    <?php
    
    	/* Always have wp_head() just before the closing </head>
    	 * tag of your theme, or you will break many plugins, which
    	 * generally use this hook to add elements to <head> such
    	 * as styles, scripts, and meta tags.
    	 */
    
    	wp_head();
    ?>
    
    </head>
    
    <body id="top" <?php body_class($style." ".$avia_config['font_stack']." ".$blank); avia_markup_helper(array('context' => 'body')); ?>>
    
    	<div id='wrap_all'>
    
    		<?php if(!$blank){ ?>
    
            <header id='header' class=' header_color <?php avia_is_dark_bg('header_color'); echo " ".$headerMenu; ?>' <?php avia_markup_helper(array('context' => 'header','post_type'=>'forum'));?>>
    
                <?php
                
                if($responsive && $headerMenu == 'mobile_slide_out')
                {
                	echo '<a id="advanced_menu_toggle" href="#" '.av_icon_string('mobile_menu').'></a>';
    	    		echo '<a id="advanced_menu_hide" href="#" 	'.av_icon_string('close').'></a>';
                }
                
    
                $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
    
                //subheader, only display when the user chooses a social header
                if(strpos($headerS,'social_header') !== false)
                {
                ?>
                <div id='header_meta' class='container_wrap container_wrap_meta'>
    
                      <div class='container'>
                      <?php
                            /*
                            *	display the themes social media icons, defined in the wordpress backend
                            *   the avia_social_media_icons function is located in includes/helper-social-media-php
                            */
    
                            if(strpos($headerS,'bottom_nav_header') === false) avia_social_media_icons($social_args);
    
                            //display the small submenu
                            echo "<nav class='sub_menu' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
                                $avia_theme_location = 'avia2';
                                $avia_menu_class = $avia_theme_location . '-menu';
                                $args = array(
                                    'theme_location'=>$avia_theme_location,
                                    'menu_id' =>$avia_menu_class,
                                    'container_class' =>$avia_menu_class,
                                    'fallback_cb' => '',
                                    'container'=>'',
                                    'echo' =>false
                                );
    
                                $nav  = wp_nav_menu($args);
                                echo $nav;
    
                                $phone = avia_get_option('phone');
                                $phone_class = !empty($nav) ? "with_nav" : "";
                                if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";
    
                                /* <div class="phone2">503-436-5576</div>
                                *  Hook that can be used for plugins and theme extensions (currently:  the woocommerce shopping cart)
                                */
                                do_action('avia_meta_header');
                            echo '</nav>';
                        ?>
                      </div>
                </div>
    
                <?php } ?>
    
                <div  id='header_main' class='container_wrap container_wrap_logo'>
                      <div class='phone2'><a href="tel:15034365576">Contact Us:(503)436-5576</div></a>
                      </a></strong><img class='cards' src='http://garagedoorsrepairwestlinn.com/wp-content/uploads/2014/01/crdit-card-logo.jpg' />   
                        <?php
                        /*
                        * Hook that can be used for plugins and theme extensions (currently:  the woocommerce shopping cart)
                        */
                        do_action('ava_main_header');
    
                        ?>
    
                        <div class='container'>
    
                            <?php
                            /*
                            *	display the theme logo by checking if the default logo was overwritten in the backend.
                            *   the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output
                            */
                            echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
    
                                if(strpos($headerS,'social_header') !== false && strpos($headerS,'bottom_nav_header') !== false) avia_social_media_icons($social_args);
    
                            /*
                            *	display the main navigation menu
                            *   modify the output in your wordpress admin backend at appearance->menus
                            */
                                $extraOpen = $extraClose = "";
                                if(strpos($headerS,'bottom_nav_header') !== false){ $extraClose = "</div></div><div id='header_main_alternate' class='container_wrap'><div class='container'>";  }
    
                                echo $extraClose;
    
                                echo "<nav class='main_menu' data-selectname='".__('Select a page','avia_framework')."' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
                                    $avia_theme_location = 'avia';
                                    $avia_menu_class = $avia_theme_location . '-menu';
                                    $args = array(
                                        'theme_location'	=> $avia_theme_location,
                                        'menu_id' 			=> $avia_menu_class,
                                        'container_class'	=> $avia_menu_class,
                                        'fallback_cb' 		=> 'avia_fallback_menu',
                                        'walker' 			=> new avia_responsive_mega_menu()
                                    );
    
                                    wp_nav_menu($args);
                                echo '</nav>';
    
                                /*
                                * Hook that can be used for plugins and theme extensions
                                */
                                do_action('ava_after_main_menu');
                            ?>
                        <!-- end container-->
                        </div>
    
                <!-- end container_wrap-->
                </div>
    
                <div class='header_bg'></div>
    
            <!-- end header -->
            </header>
    
    	<?php } //end blank check ?>
    	<div id='main'>
    
    

    and for custom css:

    #top .social_bookmarks { display: none; }
    #header_meta { display: none; }
    
    #header_main .container, .main_menu ul:first-child > li > a {
    height: 131px !important;
    line-height: 131px !important;
    }
    
    #header_main_alternate .container, .main_menu ul:first-child > li > a {
    color: green !important;
    height: 40px !important;
    line-height: 40px !important;
    }
    
    #top .main_menu .menu>li:last-child>a {
    padding-right: 10px;
    }
    
    .phone2 {
    color: black;
    font-size: 25px;
    padding: 4px;
    position: absolute;
    right: 80px;
    top: 99px;
    }
    
    .cards {
    position: absolute;
    right: 80px;
    top: 50px;
    }

    I feel like I’ve done everything exactly as suggested.. and it’s still not working.

    #219059
    This reply has been marked as private.
    #219034

    In reply to: footer

    hello guys…
    i have another Problem…..

    http://imgur.com/p9hxwtQ
    I don’t understand why the borderline on the top is not legible….and another big Problem….when i go with the cursor on a title it desapeare….HELP:))))

    cheers

    Isabelle

    #219012
    gxjansen
    Participant

    Hi!

    I have some custom icons I’d like to add to the iconfont manager. Not through Fontello, I have the icons I’d like to use on my own laptop and want to upload them to the iconfont manager. Is this possible? If so: is there a howto for this?

    Thx!

    #218988

    But there is a problem with this code for removing the icons from the header:
    #top .social_bookmarks { display: none; }

    This makes the social media icons disappear everywhere. I want to remove them from the header and make them appear in widgets and avia layout editor text boxes.

    #218975
    Kimberly
    Participant

    I am wishing to have my LayerSlider at the top of my website be fixed like we can do with the Fullwidth slider. Is there any CSS code or option for us to be able to do this.

    My website is http://threeriversrealtymn.com

    Thanks in advance!

    #218960

    In reply to: Blog sidebar border

    Hi, here’s what I have in my style.css (in my child theme):

    .content, #top #main .sidebar, .sidebar_left .content {
    border-left-style: none;
    border-right-style: none;}
    
    .blog #main .sidebar {border-style: solid!important; }

    This does not show a border on the blog page. I do not have any border CSS in my quick CSS. Any other thoughts? Thanks!

    #218929

    Topic: Header styling problem

    in forum Enfold
    creolerim
    Participant

    Hi,

    I’m trying to get the header to look like in the demo but I get a solid colored line on top and bottom of the header (instead of grayish/shadow lines).

    I’m using a child theme.

    You can view my test site here:
    xxx

    Can you help me fix this issue?

    Thanks, Eric

    • This topic was modified 11 years, 11 months ago by creolerim.
    #218926

    Josue,

    Thank you for the social media icon html. This code works fine in a avia layout builder text box. But in a widget the icons stack horizontally and only the first one is visible. Can you solve that bug?

    Test page here (shows four samples: 1)1/3 custom widget, 2)full width custom widget, 3)avia layout builder text box, 4)footer widget:
    http://www.brixenivy.com/newsite/social-media-test/

    This is the code (from above) that we are talking about:

    <ul class=”noLightbox social_bookmarks icon_count_5″><li class=”social_bookmarks_yelp social_icon_1″><li class=”social_bookmarks_twitter social_icon_2″><li class=”social_bookmarks_facebook social_icon_3″><li class=”social_bookmarks_youtube social_icon_4″><li class=”social_bookmarks_mail social_icon_5″>

    #218920
    davidtaylorwebmedia
    Participant

    Hi – hope I can explain this ok.

    When I try to edit a portfolio item – I can not get the advanced layout editor to come up – only the default editor button shows and the rest of the page is blank. I can’t click on the default editor button either – just seems to be ‘frozen’

    I hope you can see this screen shot

    /Users/richardalexander/Desktop/Screen Shot 2014-02-03 at 15.09.06.png
    Only one page is affected like this

    thanks

    ahauber
    Participant

    Dear Team,
    How can I decrease the top and bottom padding for the PromoBox content element?
    You can see it in the Home page of – http://dtimegroup.com/
    Many thanks and regards from Madrid, Adolfo

    #218893

    Topic: WooCommerce Homepage

    in forum Enfold
    nannini
    Participant

    Dear Support,
    I have created a customized shop home page for WooCommerce, and I have not set the base page for the shop in WooCommerce settings as you suggested in other topic, this to avoid the Woocommerce template. This works fine but creates two problems that I ask you how to solve:
    1. When I am on the cart page with an empty cart, the button “Return to shop” is linked on itself (does not return to the corrected shop home page).
    2. The breadcrumb track does not show the shop home page, but only the home page of the website (for exemple: “You are here: Home / Cart” instead of “You are here: Home / Shop / Cart”)
    Can someone help me about this? Thank you
    Guido

    #218889

    Perfect, thanks!

    #218880

    In reply to: Blog sidebar border

    Hi!

    Please find following code in Quick CSS or Custom.css file

    .content, #top #main .sidebar, .sidebar_left .content {
    border-left-style: none!important;
    border-right-style: none!important;
    }

    and remove !important rules then add following code to Quick CSS

    .blog #main .sidebar { border-style: solid!important; }

    Best regards,
    Yigit

    #218872

    In reply to: Maximum Logo Width

    Hi!

    Please upload your logo in Enfold theme options and add following code to Quick CSS under Styling tab

    .fixed_header.social_header #main { padding-top: 187px; }
    .logo, .logo a, .logo img { max-width: 562px!important; }

    then please refer to this post to increase the header height to 156px https://kriesi.at/support/topic/change-logo-image-for-scrolled-header/#post-188003

    Best regards,
    Yigit

    #218865
    wss310
    Participant

    Hi, I use a masonry sorting blog here:
    http://noblewhy.com/blog-resources/

    On the top of the blog where the category sorting is, is there any way to change that background? I have the image background across all my pages and want to keep that, but is there any way to just change the color of the sorting bar? Thanks!

    #218861

    Hey marceloerlemans!

    Please refer to my post here https://kriesi.at/support/topic/navigation-menu-on-ipad-portrait-view/#post-216753

    Best regards,
    Yigit

    #218855

    Topic: Don't show Author Page

    in forum Enfold
    andy
    Participant

    Hello,

    my question is:

    how can I stop wordpress to show my Author Page.
    The first link on Google with my name is to the Author Page which I don’t want to be displayed.

    Thank you very much for your help.

    Many greetings
    Andy

    #218845

    In reply to: Search Submit Button

    Hi!

    The code you are adding should work. Please try adding following code to Quick CSS

    #top #searchsubmit, .ajax_load { height: 42px !important; }

    Cheers!
    Yigit

    #218836

    Hey sineadh!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .avia-menu-fx { display: none; }

    If that does not work, please post the link to your website. I checked the one you have posted in your older topic

    Regards,
    Yigit

    #218833

    In reply to: padding responsive

    Hey Munford!

    There is a small mistakes in the code, please use it as following instead

    @media only screen and (max-width: 767px) {
    .content { padding-bottom: 10px !important; }
    .content { padding-top: 10px !important; }}

    Then flush browser cache on your mobile device

    Best regards,
    Yigit

    #218832

    Hey Benjaminlivingthebrand!

    Please refer to Peter’s post here https://kriesi.at/support/topic/adding-slideshare-to-header-social-icons/#post-200202

    Cheers!
    Yigit

Viewing 30 results - 133,981 through 134,010 (of 142,578 total)