Forum Replies Created

Viewing 30 posts - 62,281 through 62,310 (of 66,742 total)
  • Author
    Posts
  • in reply to: Search Box #191324

    Hi!

    You can use this plugin: http://wordpress.org/plugins/widget-logic/

    Cheers!
    Ismael

    in reply to: a question about galleries #191323

    Hey!

    Please post the link of the website. I think you forgot to place the link on your last post. We usually suggest users to hire someone when the customization or feature requires hours of work. You can visit http://werkpress.com/.

    Regards,
    Ismael

    in reply to: WooCommerce Layout issues. #191321

    Hi!

    We need to see the actual website. Please post it here. Links to the actual pages with the issue will be great.

    Cheers!
    Ismael

    in reply to: excerpt length – where to define? #191320

    Hey kaMai!

    First, don’t set a blog page on Enfold > Theme Options > Where do you want to display blog? option. Create a page then insert the Blog Posts element, modify the Blog Content length to show an excerpt. You can also use the <!–more–> tag or click Screen Options when editing a post then enable the Excerpt. You can have full control over the summary.

    Regards,
    Ismael

    in reply to: CSS customize #191319

    Hi Viramedia!

    You can request the feature here: https://kriesi.at/support/topic/enfold-feature-requests/

    Anyway, you don’t need to be a wizard to change the style of a certain element on the theme. All you need is a very basic understanding of CSS. You can use the Enfold > Styling > Quick CSS field to create the necessary changes that you want.

    What do you mean by the “sizes for each paragraph”? Do you want to set an excerpt? You can modify the Blog Posts element’s Content Length, choose Excerpt. You can watch Enfold videos here: https://vimeo.com/channels/aviathemes

    Regards,
    Ismael

    Hey jeffoundquick!

    Please follow Kriesi’s instruction here: https://kriesi.at/support/topic/icons-still-not-working-in-firefox-and-ie/

    Best regards,
    Ismael

    in reply to: Remove return breaks from shortcode [one_fourth] #191312

    Hey Brian!

    How did br tags get there? You can add a 4 1/4 columns like the one you have using this:

    [av_one_fourth first]Add Content here[/av_one_fourth]
    
    [av_one_fourth]Add Content here[/av_one_fourth]
    
    [av_one_fourth]Add Content here[/av_one_fourth]
    
    [av_one_fourth]Add Content here[/av_one_fourth]

    Cheers!
    Ismael

    in reply to: sortable portfolio #191311

    Hey segalmedia!

    You can create multiple pages then insert the Portfolio Grid element to each of them. Select different portfolio categories for different pages. Customize the menu on Appearance > Menus.

    Cheers!
    Ismael

    in reply to: Different view for single.php #191310

    Hey kaMai!

    Please post a screenshot of what you’re trying to do. Use imgur, dropbox, mediafire etc. FYI, you can change the single post view on Enfold > General Settings > Single Post Style. You can select betweem big and small preview image.

    Cheers!
    Ismael

    in reply to: Changing toggles/accordion font colour #191308

    Hey midischool!

    You can add this on your custom.css or Quick CSS:

    .main_color .sidebar_tab, .main_color .tabcontainer .tab {
    color: black;
    }

    Regards,
    Ismael

    in reply to: Menu descriptions #191307

    Hey COLORIT!

    You need to add the walker menu. Please hire someone to modify wp_nav_menu and add the walker feature. You can also try this:

    Add this on your functions.php:

    class My_Walker extends Walker_Nav_Menu
    {
    	function start_el(&$output, $item, $depth, $args) {
    		global $wp_query;
    		$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
    
    		$class_names = $value = '';
    
    		$classes = empty( $item->classes ) ? array() : (array) $item->classes;
    
    		$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
    		$class_names = ' class="' . esc_attr( $class_names ) . '"';
    
    		$output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>';
    
    		$attributes  = ! empty( $item->attr_title ) ? ' title="'  . esc_attr( $item->attr_title ) .'"' : '';
    		$attributes .= ! empty( $item->target )     ? ' target="' . esc_attr( $item->target     ) .'"' : '';
    		$attributes .= ! empty( $item->xfn )        ? ' rel="'    . esc_attr( $item->xfn        ) .'"' : '';
    		$attributes .= ! empty( $item->url )        ? ' href="'   . esc_attr( $item->url        ) .'"' : '';
    
    		$item_output = $args->before;
    		$item_output .= '<a'. $attributes .'>';
    		$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
    		$item_output .= '<span class="walker-sub">' . $item->description . '</span>';
    		$item_output .= '</a>';
    		$item_output .= $args->after;
    
    		$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
    	}
    }

    Go to Quick CSS, add this code:

    .walker-sub {
    	display: block;
    	position: absolute;
    	top: 70px;
    	min-width: 90px;
    	font-size: 10px;
    	color: gray;
    	line-height: 12px;
    }

    Edit includes/helper-main-menu.php, find this code on line 167:

     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()
                                    );

    Replace it with:

    
    echo "<nav class='main_menu' data-selectname='".__('Select a page','avia_framework')."' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
                                    $avia_theme_location = 'avia';
    								$walker = new My_Walker;
                                    $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' 			=> $walker
                                    );

    Best regards,
    Ismael

    • This reply was modified 10 years, 7 months ago by Josue.
    in reply to: Bar under Active Page in Menu #191306

    Hey danieltjohnston!

    You can add this on your custom.css or Quick CSS:

    .current-menu-item>a>.avia-menu-fx {
    	opacity: 0 !important;
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Blog #191305

    Hi Halcyon!

    1.) You can add this on your custom.css or Quick CSS:

    .small-preview {
    border-radius: 82px;
    }

    2.) You need to choose a post format. If you want to show the gallery of a certain post, select the “Gallery” format. It is using the Single Author, big preview blog style.

    Regards,
    Ismael

    in reply to: Enfold Questions #191303

    Hey!


    @dawsmik
    : You need to edit the custom.css file via FTP or your cpanel.


    @current162
    : Thanks for jumping in. Your help is appreciated. :)

    Best regards,
    Ismael

    in reply to: How to justify menu down from center? #191301

    Hey MuzSolutions!

    I’m not sure what you’re trying to do but you can move the main menu using this:

    .main_menu {
    right: 0;
    top: 20px;
    }

    Regards,
    Ismael

    in reply to: Default "portfolio-ajax" didn't work correct #191299

    Hey!

    Glad it is clear now. :)

    Cheers!
    Ismael

    in reply to: Social Buttons not displaying image #191297

    Hi BelIblis!

    Have you tried the Addthis plugin? http://wordpress.org/plugins/addthis/

    You can refer to this link: https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header/?replies=4#post-134606

    Best regards,
    Ismael

    in reply to: changing the colors of tabs in content element #191296

    Hi Indiatravelz!

    You can find the css style of the Tab element on css > shortcodes.css:

    #top .tabcontainer{
    background: transparent;
    }
    
    .tabcontainer{
    margin: 30px 0;
    position: relative;
    width:100%;
    clear: both;
    overflow: hidden;
    background: transparent;
    }
    
    .tab_titles{
    position: relative;
    width:100%;
    clear: both;
    float:left;
    z-index: 5;
    }
    
    .widget .tabcontainer{
    margin-top:0px;
    }
    
    .js_active .tab_content{
    visibility: hidden;
    clear: both;
    padding: 10px 19px;
    overflow:auto;
    position: absolute;
    top:0;
    z-index: 0;
    left:120%;
    width:100%;
    }
    
    .js_active .tab{
    cursor:pointer;
    margin:0 -1px 0 0;
    display: block;
    float: left;
    z-index: 2;
    position: relative;
    padding:12px 16px;
    top:1px;
    font-size: 11px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-style: solid;
    border-width:1px;
    }
    
    .js_active .top_tab .tab{
    border-bottom: none;
    padding:12px 16px 14px 16px;
    }
    
    .js_active .active_tab{
    z-index: 4;
    position: relative;
    font-weight: bold;
    }
    
    .js_active .tab_titles .tab:first-child{
    border-top-left-radius:  2px;
    }
    
    .js_active .tab_titles .tab:last-child{
    border-top-right-radius: 2px;
    }
    
    .js_active .active_tab_content{
    display: block;
    visibility: visible;
    z-index: 3;
    position: relative;
    overflow:auto;
    border-style: solid;
    border-width:1px;
    border-radius: 2px;
    left:0;
    width:auto;
    }
    
    .tabcontainer .tab_icon{
    margin-right: 7px;
    font-size: 13px;
    }
    
    .tab_inner_content{
    margin: 11px 0;
    left:-200%;
    position: relative;
    }
    
    .active_tab_content .tab_inner_content{
    left:0;
    position: relative;
    }

    Can you please post a screenshot of what you’re trying to do?

    Best regards,
    Ismael

    in reply to: Incorrect Styling Enfold Theme Options (WPML) #190923

    Hey!

    Have you tried copying everything from enfold.css to wp-content/themes/enfold/css > custom.css?

    Cheers!
    Ismael

    in reply to: Slider not working #190921

    Hi agasparkles!

    Sorry for the delay. Please give us a link to the website. Post the login details here as a private reply.

    Best regards,
    Ismael

    in reply to: fullscreen easy slider caption #190920

    Hey!

    Can you please give us a link to the website? Did you try to update the theme?

    Regards,
    Ismael

    in reply to: pt_BR.PO file #190919

    Hi CloudChoice!

    You can use the Codestyling Localization plugin to translate the text or string. Go to Tools > Localization > Edit the brazilian language then search for the specified text.

    Regards,
    Ismael

    in reply to: Portfolio #190918

    Hi tdproperty!

    It is commonly use to showcase your previous work or projects. It is the same as posts but you can use the Advance Layout Builder when working with portfolio items. You can watch these videos: http://vimeo.com/channels/aviathemes

    Cheers!
    Ismael

    in reply to: Contact Form Not Working #190817

    Hi!

    Have you checked on your junk or spam folders?

    Cheers!
    Ismael

    in reply to: Can't access themes page or upload plugins #190816

    Hi erinnova!

    Are you sure you’re using an administrator account? Please check. A link to your website will help. If you don’t mind, please post the login details here as a private reply.

    Best regards,
    Ismael

    in reply to: Forcing Elements to Disappear? #190815

    Hi dcmalk!

    Yes, it it doable. What elements are you trying to remove on mobile? You can use media queries. For example, ff you want to remove the header on mobile view you can do something like this on Quick CSS:

    @media only screen and (max-width: 767px) {
      #header {
      display: none;
      }
    }

    Regards,
    Ismael

    in reply to: Footer Image and centering menu/links in header with icons #190813

    Hey ediethelm!

    1.) You can use a text widget then add the logo code manually:

    <a href="LOGO LINK HERE"><img src="LOGO URL HERE"></a>

    2.) Did you modify any css styling? It should vertically aligned by default.

    Cheers!
    Ismael

    in reply to: Incorrect Styling Enfold Theme Options (WPML) #190812

    Hey!

    Please go to wp-content/uploads/dynamic_avia, edit enfold.css then copy everything. Place all of it on custom.css. Remove browser cache then test each languages.

    Cheers!
    Ismael

    in reply to: Fonts for sliders #190791

    Hey Indiatravelz!

    What font are you trying to use? You can edit the layers on the slider then go to Attribute panel. Add a unique css selector on the CSS Class or CSS ID field, “layer-slider-font” for example. Specify the font family on Quick CSS:

    .layer-slider-font {
    font-family: 'Open Sans', sans-serif;
    }

    Best regards,
    Ismael

    in reply to: Incorrect display of advanced layer slider on mobile #190787

    Hey marcuscent!

    You can edit the layers on the slider then add go to Attribute panel. Add a unique selector for each of them. Adjust the position on mobile view using media queries. Please update us after you added an attribute.

    Best regards,
    Ismael

Viewing 30 posts - 62,281 through 62,310 (of 66,742 total)