Forum Replies Created

Viewing 30 posts - 38,161 through 38,190 (of 66,745 total)
  • Author
    Posts
  • Hey!

    1.) It is working when I applied it in the browser inspector. Please post the login details here so that we can check the css codes.

    2.) Did you remove the css code? I checked the link and the hover color of the back button still there.

    Cheers!
    Ismael

    in reply to: Problem with theme on mobile #718113

    Hi!

    How I can put the theme in with the same design for pc but adapting to the size of mobile?

    Could you please be more specific with the issue? If the “responsive” option is disabled, the site is not going to adapt on mobile view. You have to enable the “responsive” option and then fix the issues from there.

    Best regards,
    Ismael

    Hey NGdesign6!

    Thank you for using Enfold.

    The lightbox requires the title of the actual image or the image’s parent, usually a link tag. It cannot fetch the value of the title or caption field. Unfortunately, you have to specify the title and the description of the image in the Media > Library separately. If you want to modify the theme’s lightbox integration, edit the js > avia.js file, look for the following code.

    image: {
    				    titleSrc: function(item){
    					    var title = item.el.attr('title');
    					    if(!title) title = item.el.find('img').attr('title');
    					    if(!title) title = item.el.parent().next('.wp-caption-text').html();
    					    if(typeof title == "undefined") return "";
    					    return title;
    					}
    				},
    

    Unfortunately, this modification is quite extensive and it is outside the scope of support. Please hire a freelance developer or contact our partner, codeable.

    // http://kriesi.at/contact/customization

    Best regards,
    Ismael

    Hi,

    Thank you for the info. We modified the code in the functions.php file. Please remove browser cache or hard refresh before checking the page product page.

    // http://weflexcarsales.com/own-cat/new-toyota-prius-active/

    Best regards,
    Ismael

    in reply to: How to set sidebar of portfolio catagery page. #718104

    Hey tonyyim2008!

    Thank you for using Enfold.

    There is no designated widget area for the portfolio category so you have to use the “Displayed Everywhere” widget area. Use the following plugin to control the visibility of the widget.

    // https://wordpress.org/plugins/widget-logic/

    Use the is_tax( ‘portfolio_entries’ ); conditional function.

    // https://codex.wordpress.org/Function_Reference/is_tax

    Cheers!
    Ismael

    in reply to: Twitter shows no post image #718101

    Hey!

    I can’t see the code anywhere in the functions.php file. Did you remove it? We want to add it again but it will break the site if the function got duplicated. The filter should include the featured or attached image in the sharing pattern.

    Best regards,
    Ismael

    Hey!

    Alright. Please open a new thread. If you want to adjust the pattern of the share icons, you can use the following filter.

    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args)
    {
    	$thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), 'masonry' );
    	$args['twitter']['pattern'] = 'https://twitter.com/share?text=[title] '.$thumb[0].'&url=[shortlink]';
    	return $args;
    }

    Best regards,
    Ismael

    in reply to: Slow image proscessing after upload #718097

    Hey norbou!

    Thank you for using Enfold.

    Please refer to these threads if you want to remove some of the generated thumbnails.

    // https://kriesi.at/support/topic/image-upload-2/#post-614738
    // https://kriesi.at/support/topic/enfold-child-remove-shop_single-shop_catalog-shop_thumbnail-in-functions-php/#post-696928

    Regards,
    Ismael

    Hi Ciaran1212!

    Thank you for using Enfold.

    1.) How did you set the font? This is the style of the nav in the “afistfullofbolts” site. Take note of the font-family property.

    .primary-nav-wrapper nav {
        font-family: Arial,sans-serif;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: .02em;
        font-family: "Courier New","Courier","monospace";
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .2em;
        font-weight: normal;
        font-style: normal;
        line-height: 1em;
    }
    

    2.) Please go to the Advanced Styling panel, modify the Main Menu Links element and tick the “Apply on hover” option.

    3.) Use the “last-child” selector to adjust the padding of the last menu item.

    #top #header .av-main-nav > li:last-child {
        padding-right: 10px;
    }

    Cheers!
    Ismael

    in reply to: Main Menu Sublevel Link Problem #718091

    Hi!

    You enabled the “mega menu” option for the “Blog” menu item. Was that intended? Disable the option if you want to display the default sub menu.

    Cheers!
    Ismael

    in reply to: Change the height of the scrolling menu #718090

    Hi ftlamont!

    Thank you for using Enfold.

    What do you mean by “scrolling menu”? Please provide a link to the page so that we can inspect it. A screenshot will help. If you’re referring to the shrinking header, you can try this in the Quick CSS field.

    #top .header-scrolled .container, #top .header-scrolled .main_menu ul:first-child > li > a, #top .header-scrolled #menu-item-shop .cart_dropdown_link.container.av-logo-container {
        height: 40px !important;
        line-height: 40px !important;
    }

    Regards,
    Ismael

    in reply to: Accordion Slider: Place Text When Open #718089

    Hi!

    Please make sure that the “Display Excerpt?” option is enabled.

    Regards,
    Ismael

    in reply to: Button Integration with Fare Harbor #718088

    Hey!

    Could you please provide a screenshot of the changes that you would like to make? Why are you using different elements in the test page when you can just use the plugin’s shortcode?

    Cheers!
    Ismael

    in reply to: Insert javascript on codeblock issues #718087

    Hi,

    What is that script supposed to do? Where did you get it?

    Best regards,
    Ismael

    in reply to: Product categorys in 2 rows in footer, is that possible? #718086

    Hi,

    There is no category widget in the footer when I checked the link. Please add the widget so that we can inspect it. You can use the css nth child selector to select the items after the fifth one.

    // https://css-tricks.com/almanac/selectors/n/nth-child/

    Example.

    .widget li:nth-child(n+5) {
      /* style here */
    }

    Best regards,
    Ismael

    Hey!

    Please go to the Enfold > Header > Mobile Menu panel then enable the “Hide Mobile Menu Submenu Items” option.

    Cheers!
    Ismael

    in reply to: Columns with no border problem on safari 10.0.1 #717621

    Hey!

    The css code above should actually increase the width of the columns. I’m not sure how you see the reverse. Another workaround is to decrease the max width of the main container by a pixel.

    .responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
        width: 1299px;
    }

    Best regards,
    Ismael

    in reply to: Comment Count, Category, Pencil on blog component #717620

    Hey!

    Thank you for the info. Did you set the blog style to “Elegant”? Please add this in the Quick CSS field.

    .slide-image, .blog-categories.minor-meta, .slide-meta-comments, .slide-meta-comments + .slide-meta-del {
        display: none !important;
    }

    I can’t see that section anywhere in the site. Could you please provide a link to the actual page with the blog posts element?

    Best regards,
    Ismael

    Hi!

    Thank you for the update. And we are very sorry for the confusion.

    1.) The color section is a full width element and it will always go before the sidebar thus pushing the sidebar underneath it. Your workaround is our usual suggestion for users with the same request.

    2.) Could you please provide a screenshot of the issue? Are you referring to the Header > Header Layout > Header Title and Breadcrumbs settings?

    3.) Please adjust the ratio of the content and sidebar in the Enfold > General Layout > Dimensions > Content | Sidebar Ratio settings.

    Cheers!
    Ismael

    in reply to: error uploading fontello #717616

    Hey!

    Please remove the icon set again then go back to the fontello site. Select the fonts and then specify the font set name. View the screenshot.

    View post on imgur.com

    You have to specify a unique identifier everytime you upload an icon set.

    Best regards,
    Ismael

    in reply to: WRONG VIEW ON MOBILE #717615

    Hi mleite1!

    Thank you for using Enfold.

    I checked the page but I don’t see the described issues above. It’s probably working on an emulation. Could you please provide screenshots of the issue?

    Cheers!
    Ismael

    in reply to: Add Google fonts to header fonts list #717614

    Hey!

    UPDATE: Please use this code instead.

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    	$fonts['Roboto Light'] = 'Roboto Light:400,700';
    	$fonts['Open Sans Light'] = 'Open+Sans:300i,400';
    	$fonts['Source Sans Pro'] = 'Source+Sans+Pro';
    	return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    	$fonts['Google fonts']['Roboto Light'] = 'Roboto Light:400,700';
    	$fonts['Google fonts']['Open Sans Light'] = 'Open+Sans:300i,400';
    	$fonts['Google fonts']['Source Sans Pro'] = 'Source+Sans+Pro';
    	return $fonts;
    }
    

    Regards,
    Ismael

    in reply to: Add Google fonts to header fonts list #717613

    Hey!

    Thank you for the info.

    Please add this code in the child theme’s functions.php file.

    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    	$fonts['Google fonts']['Roboto Light'] = 'Roboto Light:400,700';
    	$fonts['Google fonts']['Open Sans Light'] = 'Open+Sans:300i,400';
    	$fonts['Google fonts']['Source Sans Pro'] = 'Source+Sans+Pro';
    	return $fonts;
    }

    Cheers!
    Ismael

    in reply to: Page name visible #717611

    Hi MaaikeVVV!

    Thank you for using Enfold.

    Please go to the Header > Header Layout and then set the “Header Title and Breadcrumbs” to display the title. If you’re using the advance layout builder, use the Special Heading element or text block to display the title of the page.

    Cheers!
    Ismael

    in reply to: Different Blog layout according to sidebar #717610

    Hi JJ!

    Thank you for using Enfold.

    Please disable the sidebar then add this in the Quick CSS Field.

    #top .fullsize .template-blog .blog-meta {
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper {
        padding-left: 50px;
        overflow: hidden;
    }

    Cheers!
    Ismael

    in reply to: Alignment header picture #717609

    Hi MaaikeVVV!

    Thank you for using Enfold.

    The width of the side header is 350px so any images with that dimension should work just fine. The height should be based on standard screen or monitor resolutions.

    // http://www.w3schools.com/browsers/browsers_display.asp

    Cheers!
    Ismael

    in reply to: Portfolio grid #717604

    Hey MaaikeVVV!

    Thank you for using Enfold.

    The images have different sizes. Edit the Portfolio Grid element then set the “Portfolio Grid Image Size” settings to the second option. Select the thumbnail size. And make sure that the original or source images have the same sizes.

    Cheers!
    Ismael

    in reply to: Header in code block #717599

    Hey NNE!

    Thank you for using Enfold.

    It’s possible to apply a different header settings for a specific page by using a filter. What kind of header would you like to have on that page?

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header) {
    	if(!is_page(array(13))) return;
    	$header['header_position'] = 'header_top';
    	$header['header_layout']   = 'logo_left menu_right';
    	$header['header_class']    = str_replace("av_bottom_nav_disabled", "", $header['header_class']);
    	$header['header_class']    = str_replace("av_bottom_nav_header", "", $header['header_class']);
    	$header['header_class']    = str_replace("av_menu_left", "", $header['header_class']);
    	$header['header_class']   .= ' html_main_nav_header av_menu_right ';
    	$header['bottom_menu']     = '';
    	return $header;
    }
    

    The example above will set the header layout to “Logo left, menu right” for the page with the ID 13.

    Cheers!
    Ismael

    in reply to: Twitter shows no post image #717594

    Hi!

    The image is not included in the “share pattern”. You can filter the pattern with the following code.

    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args)
    {
    	$thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), 'masonry' );
    	$args['twitter']['pattern'] = 'https://twitter.com/share?text=[title] '.$thumb[0].'&url=[shortlink]';
    	return $args;
    }

    // https://kriesi.at/support/topic/large-twitter-card-for-post-share-icon/#post-662746

    Best regards,
    Ismael

    in reply to: Kontaktinformationen #717593

    Hey grafisch01!

    Thank you for using Enfold.

    Generate the contact form shortcode from a temporary post or page then place it inside a text widget.

    Cheers!
    Ismael

Viewing 30 posts - 38,161 through 38,190 (of 66,745 total)