Forum Replies Created
-
AuthorPosts
-
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,
IsmaelHi 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!
IsmaelHey 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!
IsmaelHi 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,
IsmaelHey 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,
IsmaelHey!
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,
IsmaelHi 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,
IsmaelHey!
You can find the thread here: https://kriesi.at/support/topic/where-can-i-set-vimeo-attributes/
I’ll close this one now.
Regards,
IsmaelDecember 6, 2014 at 12:50 am in reply to: Changing with of Main Menu Area when using photography style theme. #363943Hi!
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,
IsmaelHi!
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,
IsmaelHi 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,
IsmaelHi 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,
IsmaelHi!
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,
IsmaelHi 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!
IsmaelHey!
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,
IsmaelHey!
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,
IsmaelDecember 5, 2014 at 10:32 pm in reply to: Updating Enfold Theme through WordPress Breaks Every Time #363882Hi!
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,
IsmaelDecember 5, 2014 at 10:30 am in reply to: Adding Image Size to "Attachment Display Settings" #363481Hi 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,
IsmaelHey!
You can try this:
.header-scrolled #searchform { position: absolute; top: -40px !important; right: 220px !important; }Regards,
IsmaelHey 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,
IsmaelHey Brian!
Thank you for using Enfold.
Try to wrap the masonry element inside a color section. See if that helps.
Regards,
IsmaelHi!
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!
IsmaelHi 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,
IsmaelHi 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!
IsmaelHi 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,
IsmaelHi 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!
IsmaelHi!
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,
IsmaelHi!
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!
IsmaelDecember 5, 2014 at 5:59 am in reply to: Advanced Slider cannot dissolve-fade (add) items between layers… #363428Hey!
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 -
AuthorPosts
