Forum Replies Created
-
AuthorPosts
-
Hi Gal763!
Navigate to Dashboard > Enfold > Sidebar Settings and make sure the “Show sidebar on Smartphones” option is checked.
Best regards,
ElliottHey XTGlobal!
If you change the opacity then the contents inside will become transparent as well. If you only want the background to be transparent then you can do this.
.av-catalogue-list > li:hover { background: rgba(0,0,0,0.2) !important; }The first three zeroes correspond to an RGB value so you can change it’s color. The 4th value is the opacity.
Cheers!
ElliottHi blankonblank!
1. Add this to the bottom of your functions.php file.
add_filter( 'avf_title_args', 'enfold_customization_title_link' ); function enfold_customization_title_link( $settings ) { $settings['link'] = null; return $settings; }2. The titles on your blog page are already uppercase so I’ll assume you figured this out.
3. I checked your link but they are already running full width. Do you mean you wish to have them run outside of the page margins? If so then I do not see an easy way of going about this unfortunately. It would take a lot of time and code and would have to be considered custom work.
Regards,
ElliottHi Genarvaz!
Add this to a codeblock element in your page.
<style type = "text/css"> .products .product { margin-right: 3% !important; width: 20% !important; } </style>And play around with the width and margins until it looks good.
Regards,
ElliottHey codecreative!
I viewed your link but I don’t see the table anywhere so I’ll assume you removed it. Take a screenshot and highlight what is going on so we can get a better idea.
Also paste the code your using here.
Best regards,
ElliottJanuary 17, 2015 at 5:26 pm in reply to: Post with featured image not above but beside the header #381263Hi sunshineh!
Try adding this to your custom CSS.
.template-blog .big-preview { float: left; margin-right: 20px; }Or you can also try the “single author small” style in Dashboard > Enfold > Blog Layout.
If that’s not what your wanting then send us a link and we’ll take a look. You can set your reply as private if you wish.
Cheers!
ElliottHi Marcelo!
That’s going to take a lot of CSS work to style the plugin like that so this will have to be considered custom work. You’ll need to hire a freelancer for helping you out with these customizations.
Cheers!
Elliott-
This reply was modified 11 years ago by
Elliott.
January 17, 2015 at 5:16 pm in reply to: Avia Layout Builder ability to use closing shortcode #381257Hey Bill!
I don’t think you will be able to use the avia layout builder like that. You can switch to the default editor and surround shortcodes inside each other.
You can also enable the debug view for the layout builder, http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/, and insert shortcodes that way.
Cheers!
ElliottHey infisoul!
You most likely need to update Enfold. The latest version is 3.0.4. See here for updating via FTP, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Regards,
ElliottHey!
In that case you would just add the full width button to your content without nesting it inside other elements. I tried viewing your link but it is password protected.
Best regards,
ElliottHi curandero!
Try adding this to your custom CSS.
.avia-google-maps { border: 5px solid white !important; }Best regards,
ElliottHi xyzb!
I think that should be working. Double check your posts to make sure they are all assigned to the same category and send us a link so we can take a look. Also be sure to deactivate all plugins while testing.
Cheers!
ElliottHey sitesky!
This is usually a problem with your hosting provider so be sure to contact them first.
You said your receiving emails with the Enfold contact form but not with contact form 7? Are you sure there are no typos in your email address?
Send us a link to your page and we’ll send a test email. Make sure to check your spam folders.
Best regards,
ElliottHey dawsmik!
You can download Enfold from your themeforest downloads page where the theme was initially purchased. Once you have WordPress installed at WP Engine then you can install Enfold there.
Best regards,
ElliottHey Mathijn!
Send us a link to your post and paste the code your using here.
Be sure to deactivate all plugins while testing.
Regards,
Elliott-
This reply was modified 11 years ago by
Elliott.
Hey MrHarryPotter!
1. Try adding this to your custom CSS.
.sub-menu, .sub-menu li, .sub-menu a { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.4) !important; }2. Are you talking about the fullscreen slider? If so then you can target it with this ID.
#fullscreen_slider_0And increase the 0 for each fullscreen slider your using on the page.
Regards,
ElliottHi VCGray!
You have a copy of jQuery being loaded from Google which is causing the error. This is usually caused by a plugin.
Make sure WordPress is updated and try adding this to the bottom of your wp-config.php file.
define('CONCATENATE_SCRIPTS', false );Cheers!
ElliottJanuary 17, 2015 at 12:13 am in reply to: Border Thickness Logo Area / Font size of page titles #381151Hi juergmahler!
1. Add this to your custom CSS.
#header_main { border-bottom-width: 1px !important; }2. Add this to your custom CSS.
.main-title, .main-title a { font-size: 12px !important; }Cheers!
ElliottHi James!
Add this to your custom CSS.
.tab_inner_content li, .tab_inner_content p { font-size: 20px !important; }Best regards,
ElliottHi torndownunit!
The post and products slider have an option for setting the title and excerpt or hiding them. Though the default behaviour is to display the title and excerpt.
Send us a link to your page and take a screenshot highlighting what your trying to do so we can get a better idea.
Regards,
ElliottHey pixup!
Add this to the bottom of your functions.php file.
add_filter( 'avf_title_args', 'enfold_customization_title_link' ); function enfold_customization_title_link( $settings ) { $settings['link'] = null; return $settings; }Regards,
ElliottJanuary 16, 2015 at 11:55 pm in reply to: How do I design the header – MEGA MENU section of Enfold theme #381144Hi!
So your trying to make the mega menus have a gradient correct? You can create a CSS gradient here, http://www.colorzilla.com/gradient-editor/.
And then add this to your custom CSS.
.avia_mega_div { insert the code from the CSS tool here }Cheers!
ElliottJanuary 16, 2015 at 11:48 pm in reply to: Facebook Box shows up in the Layout Editor but not on the page #381141Hey kopf-und-stift!
Add it to a codeblock element.
If your still having problems then send us a WordPress login and we’ll take a look.
Regards,
ElliottJanuary 16, 2015 at 11:44 pm in reply to: Logo in header moves around when browser Zoom is used #381139Hey LFD_Thueringen!
It’s because of this custom CSS your using.
.html_header_top.html_logo_center .logo { left: 350px; position: absolute; transform: none; }Since your logo is very large I recommend adding it to the header background instead.
Best regards,
ElliottHi danwin7!
So your trying to make it so the Masonry images are not clickable, only the title?
Go ahead and send us a link to your page so we can get a better idea of what your trying to do.
Best regards,
ElliottHey!
I’m not sure if it would be possible to do in a template but you can do it in a child theme. See here for more info, https://kriesi.at/support/topic/overriding-functions-in-a-child-theme/.
Cheers!
ElliottHey Annemarie!
When you edit your portfolio posts there will be an option called “Overwrite portfolio link setting” which you can use to link to your youtube or vimeo video.

Regards,
ElliottHey!
When you edit the color section set a background image and then set the “Background Repeat” option to “Stretch to fit”. You need to use large images for this though or they will display blurry / pixellated.
Regards,
ElliottHey martinafuchs!
It’s your comment form correct? That looks like it’s coming from a plugin. Try deactivating all of your plugins and reactivate them one by one to see which one is causing it.
Cheers!
ElliottHi martinafuchs!
The fullscreen slider is not a good choice for that as it’s meant to take up the full screen. I recommend using the LayerSlider shortcode instead to create your slideshow. It’s height will decrease as well to make your images responsive on smaller screens.
Cheers!
Elliott -
This reply was modified 11 years ago by
-
AuthorPosts
