Forum Replies Created

Viewing 30 posts - 53,191 through 53,220 (of 67,510 total)
  • Author
    Posts
  • in reply to: Use different logo on tablets and phones? #363964

    Hey!

    Oh. My bad. Anyway, please try this:

    @media only screen and (max-width: 767px) {
    .logo a span {
    display: none !important;
    }
    
    .responsive .logo a {
    background: url('http://dev.bogosavljev.com/wp-content/themes/quince-child/images/new_big_logo_100.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    }
    }

    This will remove the original logo image then assign the mobile logo as background.

    Best regards,
    Ismael

    in reply to: Google Maps (Multiple) #363961

    Hi mcraig77!

    Thank you for using Enfold.

    Create a draft page then add the google map shortcode. Add the pins. Save. Switch the advance layout builder to debug mode: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    You can now copy the shortcode on different pages. Or create a page then switch to advance layout builder. Add the map shortcode, save as template.

    Cheers!
    Ismael

    in reply to: Image rollover match shape #363957

    Hey mcraig77!

    Thank you for using Enfold.

    No, I’m sorry but it’s not possible. Anyway, I’ll ask the rest of the support team. I’m sure they will tell you the same thing.

    Cheers!
    Ismael

    in reply to: Enfold Combo Widget out of Sync with Stats #363956

    Hi camtay!

    Thank you for using Enfold.

    The widget order the posts by comment count not view stats. I guess you need to install a plugin for this then change the query on framework > php > class-framework-widgets.php. Look for this line on 935:

    avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts);
    

    Refer to this link for a possible fix:

    https://wordpress.org/support/topic/change-loop-to-order-posts-by-views?replies=3

    Best regards,
    Ismael

    in reply to: BBpress Meta description SEO problem #363952

    Hey gloopy1!

    Thank you for using Enfold.

    You can change the default topic meta description on SEO > Title & Metas > Post Types > Topics > Meta description template: field. You can also change this manually for each topic.

    Regards,
    Ismael

    in reply to: space from top of the page to top of the header #363950

    Hey!

    Use the wp_head action hook to add the script. Refer to this link: http://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

    Or you can keep the code. Add this on Quick CSS:

    html.responsive {
    min-width: 0px;
    margin-top: -22px;
    }

    Regards,
    Ismael

    in reply to: Sidebar appearing on bottom of page #363946

    Hi nsmllc!

    Thank you for using Enfold.

    Looks like you added the contact form inside a color section. Color Sections and full width sliders will always push the sidebar to the bottom of the page. Try to insert the contact form without the color section.

    Best regards,
    Ismael

    in reply to: How can I do an FAQ Section ? #363944

    Hey!

    You can find the thread here: https://kriesi.at/support/topic/where-can-i-set-vimeo-attributes/

    I’ll close this one now.

    Regards,
    Ismael

    Hi!

    You can use this on Quick CSS or custom.css:

    .html_header_sidebar #top #header {
    width: 250px;
    }
    
    .html_header_left #main {
    margin-left: 250px;
    position: relative;
    }

    Adjust the values on different screen sizes using css media queries.

    Best regards,
    Ismael

    in reply to: SUB Menu – Responsive issue #363942

    Hi!

    The full width sub menu element is only meant to be use as a support navigation and is still under development. Looks like you’re adding a lot of menu items on it. It lacks the mobile toggle ability of the main menu so it won’t work on smaller screens if there are a lot of items added to it. Decreasing the padding and font size of the menu items on smaller screens won’t help. Maybe, you should consider adding the navigation on the sidebar using the Custom Menu widget.

    Regards,
    Ismael

    in reply to: Problem With Layout Elements #363938

    Hi thebunn37!

    Thank you for using Enfold.

    Not all sliders can be added inside the layout elements. Which element are you trying to add?

    Best regards,
    Ismael

    in reply to: WPML language switcher position #363929

    Hi Paul!

    Thank you for using Enfold.

    Use this on functions.php to move the flags to the main menu:

    add_filter('avf_wpml_language_switcher_position', 'avf_change_wpml_language_switcher_position', $position);
    function avf_change_wpml_language_switcher_position($position) {
    	$position = 'sub_menu'; // sub_menu
    	return $position;
    }
    

    Best regards,
    Ismael

    in reply to: Serious trouble in Portfolio and webspeed! #363916

    Hi!

    The website loads fine when I checked it. Try to compress css and js scripts with this plugin: https://wordpress.org/plugins/bwp-minify/

    Best regards,
    Ismael

    in reply to: Adding another selectable filter for Portfolios #363913

    Hi Michael!

    Thank you for using Enfold.

    Yes, this is possible to implement but the task is beyond the scope of support. Please hire a freelance developer or find a third party plugin that coincide with the theme. For further modifications, please visit Envato Studio or Werkpress.

    Cheers!
    Ismael

    in reply to: Problem header #363898

    Hey!

    If I am not mistaken, you can add the code Josue provided on Enfold > General Styling > Quick CSS field or the custom.css file. I’ll ask him to confirm.

    Regards,
    Ismael

    in reply to: Responsive Images to Browser Width and Height #363894

    Hey!

    nkoziupa: I checked the test page and the images are fully scaled and responsive except for the fullscreen slider element because it automatically set the background size property to cover the whole slider area. I’m sorry but can you please elaborate the issue further? A screenshot will help.

    Regards,
    Ismael

    in reply to: Updating Enfold Theme through WordPress Breaks Every Time #363882

    Hi!

    I think it’s better if you ask the envato forum regarding this issue. Most premium themes use the auto-update library given by Envato including Enfold. Aside from file and folder permissions, make sure that you use a single license on a single domain or project.

    Best regards,
    Ismael

    in reply to: Adding Image Size to "Attachment Display Settings" #363481

    Hi omnisara!

    Thank you for using Enfold.

    Use this on functions.php:

    // New thumbnail size
    $avia_config['imgSize']['newthumbnail'] = array('width'=>200,  'height'=>200);
    
    function avia_change_image_size_array($sizes) {
    	global $avia_config;
    		
    	$avia_config['selectableImgSize'] = array(
    	'square' 				=> __('Square','avia_framework'),
    	'featured'  			=> __('Featured Thin','avia_framework'),
    	'featured_large'  		=> __('Featured Large','avia_framework'),
    	'portfolio' 			=> __('Portfolio','avia_framework'),
    	'gallery' 				=> __('Gallery','avia_framework'),
    	'entry_with_sidebar' 	=> __('Entry with Sidebar','avia_framework'),
    	'entry_without_sidebar'	=> __('Entry without Sidebar','avia_framework'),
    	'extra_large' 			=> __('Fullscreen Sections/Sliders','avia_framework'),
    	// New thumbnail size selection
    	'new_thumbnail'         => __('New Thumbnail','avia_framework'),
    	);
    	
    	$sizes = array_merge($sizes, $avia_config['selectableImgSize']);
    
    	return $sizes; 	
    }
    add_filter( 'image_size_names_choose', 'avia_change_image_size_array', 10, 1);

    Sometimes, it takes a while to flush the image size selection. Try to install the Simple Size Image plugin then add a random thumbnail size. Update then save changes. Go to a page then check if the New Thumbnail is added on the Attachment Display Settings > Size dropdown.

    Best regards,
    Ismael

    in reply to: SEARCH BOX IN HEADER #363460

    Hey!

    You can try this:

    .header-scrolled #searchform {
    position: absolute;
    top: -40px !important;
    right: 220px !important;
    }

    Regards,
    Ismael

    in reply to: problem with white spaces #363458

    Hey doritnir!

    Thank you for using Enfold.

    The link you provided is a draft. We can’t see it unless we have the login details. If possible, please provide screenshots of the issue. Regarding the logo, go to Enfold > Header panel. Set the Header Size to custom pixel value and adjust the height to 111px.

    Regards,
    Ismael

    in reply to: Content loading on top of color sections #363457

    Hey Brian!

    Thank you for using Enfold.

    Try to wrap the masonry element inside a color section. See if that helps.

    Regards,
    Ismael

    in reply to: Menu Subtitle #363455

    Hi!

    Thank you for the screenshots. You can try this: https://kriesi.at/support/topic/word-wrap-in-menu-or-have-the-menu-on-two-lines/#post-283385

    Cheers!
    Ismael

    in reply to: Fontello Iconfont not working #363453

    Hi filetrail!

    Thank you for using Enfold.

    Please give us a link to the actual website. Make sure that you’re using Enfold 3.0.4 on WordPress 4.0.1.

    Regards,
    Ismael

    in reply to: Meine Seite verstellt sich #363451

    Hi mistral2!

    Thank you for using Enfold.

    I’m not sure if I understand the inquiry correctly but I don’t see any errors on the page. I’ll ask the rest of the support team to take a look.

    Cheers!
    Ismael

    in reply to: How to update to latest 2.x version? #363450

    Hi hinnerk-a!

    Thank you for using Enfold.

    I’m sorry but you can’t go back or download an old version of the theme. WordPress 4.0.1 is only compatible with Enfold 3.0.4 and up. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Ismael

    in reply to: Single Post Template for Custom Post Type (Job) #363436

    Hi twaelde!

    Thank you for using Enfold.

    You can use this on Quick CSS or custom.css to display the author on the custom post type job:

    .single-job .av-blog-meta-author-disabled .minor-meta.blog-author {
    display: block;
    }

    Cheers!
    Ismael

    in reply to: line disapear #363434

    Hi!

    Or try this:

    strong.logo:before {
    content: '';
    display: block;
    width: 500px;
    height: 1px;
    background: orange;
    position: absolute;
    top: 55px;
    left: -450px;
    z-index: 9999;
    }
    
    strong.logo {
    overflow: visible;
    top: 1px;
    }

    Change the orange background to the exact “orange” color of the line background.

    Best regards,
    Ismael

    in reply to: line disapear #363432

    Hi!

    You are trying to connect the logo from an image background. I think this will not work on different screen sizes. I can see the site on a 1920×1080 screen resolution and it looks like this when we added the fix:

    This is the fix:

    #header_main .container { padding: 0; }
    strong.logo { top: 1px; }

    Use css media queries to change the value on different screen sizes. This will require a lot of css codes. Please hire a freelance developer to configure it for you.

    Cheers!
    Ismael

    Hey!

    Try to increase the Transition > Transition In > Duration to see the fade effect. The fade transition is not prominent when the duration is too quick. You can watch a short tutorial here but it’s quite old: https://www.youtube.com/watch?v=WB3Xyc_QDRM

    Regards,
    Ismael

    in reply to: Use different logo on tablets and phones? #363427

    Hi!

    Please provide a link to the website. We would like to check it. I don’t think svg format image will work. Please use jpg or png format images.

    Best regards,
    Ismael

Viewing 30 posts - 53,191 through 53,220 (of 67,510 total)