Forum Replies Created
-
AuthorPosts
-
Hi!
When you select the logo are you sure your using the “full” size setting and not a thumbnail? Send us a link to your page and we’ll take a look. You can set your reply as private if you wish.
Best regards,
ElliottHi dreamworker80!
You can export your settings in Dashboard > Enfold > Import/Export and reimport them at a later date.
Or you could just drag a codeblock element to your page and add custom CSS in that way.
Regards,
ElliottHey!
It looks like your using Enfold 3.0.4. You’ll need to update to the latest version, 3.4.7. That will fix the pagination issue.
I’m on Windows 10 and I checked on Edge and IE11 but it looks the same to me in all browsers. Can you take a screenshot of what your seeing?
Cheers!
ElliottHi ferencziakos!
We already include a product grid and product list element to use with Woocommerce. You can find them in the layout builder under the “Plugin Additions” tab. You can also use our other elements such as “Post Slider” with the product categories to display your products.
Best regards,
ElliottHey!
Add this to your custom CSS.
.error404 #header { position: relative !important; }
Cheers!
ElliottHey!
It sounds like you’ll need to hire a freelancer to help you out but go ahead and take a screenshot and highlight what’s going on so we can get a better idea.
Regards,
ElliottHey famewebdesign!
Navigate to Dashboard > Enfold > Header > Mobile Menu and set it to activate for tablets at 990px. If that does not work then add this to your custom CSS.
@media screen and (max-width: 1100px) { nav.main_menu { display: none !important; } #advanced_menu_toggle { display: block !important; } }
Regards,
ElliottHey monja_kantenwein!
Try adding this to your custom CSS.
time, .time-meta { display: none !important; }
If that does not work then send us a link to your page and we’ll take a look. You can set your reply as private if you wish.
Regards,
ElliottHi LBITT!
We do not have any options for that. I would look into our content slider or our testimonial elements. They would be better suited for this and they can slide content.
Cheers!
ElliottHey!
It looks like you already have it setup nice. All you really need is to add a background color to the slideshow caption container with this CSS.
.caption_right .slideshow_caption { background: rgba(0,255,100,0.3) !important; }
Cheers!
ElliottHi eladlev1!
Check out Yigit’s post here, https://kriesi.at/support/topic/search-box-in-mobile-responsive-menu/.
Regards,
ElliottHey petcar!
Your using the “add media” button to insert those in the post correct? You need to set the alignment to left for both of them. Our image shortcode can align them left as well.
Best regards,
ElliottHey Mette Juul!
You would need to contact the plugin / script author that created the game for more information.
Best regards,
ElliottHi!
I see them on those links as well. Take a screenshot and highlight what your seeing so we can get a better idea.
Cheers!
ElliottDecember 31, 2015 at 9:59 pm in reply to: custom post types default layout template with avia layout builder #558755Hey greggashley!
No but we do have a template feature. You can save a template in the layout builder and re-use it on any types of post you create. Just click on the big blue button called “Templates” in the layout builder.
Regards,
ElliottHi afiqsyahmi69!
Try increasing your upload limit, http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/.
Cheers!
ElliottHey skayy!
I see the slider images on my end. Try clearing your browser cache and any caching related plugins you might have installed.
Best regards,
ElliottHi averybird!
You’ll need to use an eCommerce plugin. If you want to setup the shop as seen in our demos then we recommend the Woocommerce plugin, https://www.woothemes.com/woocommerce/. Make sure to read it’s documentation.
Regards,
ElliottHi!
So your adding the “science” tag to the page named “new science”? WordPress does not let you add tags to pages. Do you mean you have a post named “new science”?
It sounds like your using the blog posts element on a post itself with the advanced layout editor and your wanting to exclude that post from the query. Maybe something like this would work.
add_filter('avia_blog_post_query', 'enfold_customization_query_custom'); function enfold_customization_query_custom( $query ) { global $wp_query; if ( is_single() ) { $query['post__not_in'] = array($post->ID); return $query; } }
Try adding it to your child theme functions.php file.
Best regards,
ElliottHey rohitvis!
Are you using a caching plugin? If so then be sure to clear it’s cache.
Send us a WordPress login and we’ll take a look.
Regards,
ElliottHi!
If the problem is happening on ksconnectltd then why give us a login for sjcinformatics? I logged in anyway but didn’t see any issues. The layout builder is functioning fine. I didn’t see anything that resembles your screenshots.
Are you wanting us to import one of the demos first and then check?
Best regards,
Elliott-
This reply was modified 9 years, 2 months ago by
Elliott.
December 31, 2015 at 9:34 pm in reply to: Problemas con la página de inicio / Problems on homepage #558747Hi Trucosdemamas!
It looks like your using Enfold 2.9.2. You’ll need to update to the latest version to fix, 3.4.7.
Cheers!
ElliottHey!
Yes, it will fix the pagination. I’m not sure about the HTTP upload error. I did not see it when I tried. What does the error say? Check it again after updating.
Regards,
ElliottHey Tier1Graphics!
The pages I checked it was loading fine. Which pages is it happening on?
Regards,
ElliottDecember 31, 2015 at 9:26 pm in reply to: Portfolio items grid element: margin, image position and pagination button #558743Hi Peter!
I don’t think what your trying to do is going to be easy but if you just want to remove the margin from the first one then you can use some CSS like this.
.grid-sort-container > div:first-child article { margin-left: 0px !important; }
Regards,
ElliottHey snoo2002!
You can find the fullwidth submenu element in the layout builder. Click on the “Content Elements” tab in the layout builder and you can find it there.
Best regards,
ElliottHey Giles!
I see them in your link. Can you send us a link to the exact page / post where they are not displaying?
Cheers!
ElliottHi!
Not sure I understand. Are you wanting the links of the menu to span the full width of the page? If so then try this CSS out.
#menu-main-menu > li { width: 15% !important; } @media screen and (max-width: 900px) { #menu-main-menu > li { width: auto !important; } }
Best regards,
ElliottHey markpevans!
Add this to a codeblock element in the page.
<style type = "text/css"> .tab_content img { width: 100% !important; height: auto !important; margin: 0px !important; } </style>
Best regards,
ElliottHi cielofan!
You can edit the 404 template content at /enfold/includes/error404.php.
The actual 404 template can be found at /enfold/404.php.
Best regards,
Elliott -
This reply was modified 9 years, 2 months ago by
-
AuthorPosts