Blog post titles are centered inside content boxes when you use the No Sidebar option. Check out the corresponding page and disable the right sidebar to see what I mean: http://kriesi.at/themes/enfold/shortcodes/blog-element/page/2/
Hi FLSouthPaw,
Can we take a look at your site with an example? I’ve tagged the topic for Kriesi as well as I know there has been quite a bit of chatter and changes with the sliders in the past day so if its related to the issues being looked it a fix could be pushed out quickly.
Regards,
Devin
Found the answer :
- Enable debug mode in Enfold
- Wrap desired content with div/class
https://kriesi.at/support/topic/icon-box-without-icons
Hey! Can you drop us a link to your site? Also are you using the latest version of the theme? We had a fix for this issue in an earlier version of enfold, so if you are running one of those eralier versions it might be sufficient to just update your theme :)
I’ve noticed that this only happens with the child theme. When I activate the normal Enfold theme everything is ok.
The only mods in the child theme are:
Quick CSS:
#top .avia-icon-list .iconlist_title {
color: #d98927
}
#top .avia-icon-list .iconlist_title a{
text-decoration: underline;
}
#top .avia-icon-list .iconlist_title a:hover{
text-decoration: none;
color: #88bbc8
}
Style.css:
#top .avia-slideshow-button{ text-transform: uppercase; color:#fff; border-radius: 20px; padding:7px 16px ; margin-top:20px; display: inline-block; text-decoration: none; font-weight: bold; background-color: rgba(0,0,0,0.2);
border-style: solid;
border-width: 3px;
}
No other modifications.
Cheers,
Gonzo
Here you see the issue on a completely fresh installation of both Enfold and Ubermenu: http://kaysperre.com/ubermenu-enfold/
Hi,
I’m afraid you have to redo the site from scratch since Enfold is a far different theme than Propulsion. So much has change on the templates and the actual framework.
You can find tutorial videos about Enfold here: https://vimeo.com/channels/aviathemes
Regards,
Ismael
I have 1.7.1 and the problem persists. The author image is a grey circle, the image is only visible in the author page, not in the post.
Hi!
You probably need to replace the code in wp-contentthemesenfoldincludesloop-index.php with the co-author plus function. Replace
the_author_posts_link();
with
coauthors_posts_links();
Best regards,
Peter
I watched the video: https://docs.google.com/file/d/0B8hqGBMSfHtKSC0yUUZ2cUN1SXM/edit and I did the same. However when I make a page and put inn a portfolio grid, I can only choose to display Norwegian categories which I find rather strange, even when I am on the spanish or english translation of the page. In other words the right respective category for the english and spansh languages is not showing.
Try following – open up wp-contentthemesenfoldjsshortcodes.js and replace
gallery.on('mouseenter','.avia-gallery-thumb a', function()
{
var _self = this;
big_prev.attr('data-onclick', _self.getAttribute("data-onclick"));
big_prev.height(big_prev.height());
big_prev.attr('href', _self.href)
var newImg = _self.getAttribute("data-prev-img"),
oldImg = big_prev.find('img').attr('src');
if(newImg != oldImg)
{
var next_img = new Image();
next_img.src = newImg;
big_prev.stop().animate({opacity:0}, function()
{
big_prev.html(next_img);
big_prev.animate({opacity:1});
});
}
});
with
gallery.on('click','.avia-gallery-thumb a', function()
{
var _self = this;
big_prev.attr('data-onclick', _self.getAttribute("data-onclick"));
big_prev.height(big_prev.height());
big_prev.attr('href', _self.href)
var newImg = _self.getAttribute("data-prev-img"),
oldImg = big_prev.find('img').attr('src');
if(newImg != oldImg)
{
var next_img = new Image();
next_img.src = newImg;
big_prev.stop().animate({opacity:0}, function()
{
big_prev.html(next_img);
big_prev.animate({opacity:1});
});
}
return false;
});
1) You can try to center the logo with
.logo.bg-logo{
left: 50%;
margin-left: -100px;
}
and instead of -100px insert a custom negative value. You need to calculate it by dividing the image width by 2.
3) We use the standard wordpress oembed api: http://codex.wordpress.org/Embeds and afaik it does not support any additional parameters for the url. You can try to insert the iframe directly though.
4) Yes by default Enfold will always “stretch” the columns to fill out the entire width. The thumbnail size will only change the image inside the column and the thumbnail may look distorted if it’s too small. You can try following code css code:
#top div .avia-gallery img {
width: auto;
}
it will overwrite the default width:100% code and the thumbnail shouldn’t re-size if the column width is bigger than the thumbnail width.
Hi,
Thanks for the theme firstly.
I am having a problem with my Portfolio grid not showing correctly. When the page loads you can briefly see the outline of where each box should be and then once the page is fully loaded it looks like they are all on top of each other meaning you can only see one at a time.
The page I am talking about is http://www.dogtech.com.au/dogtech-trainers
Things I have already tried –
– I upgraded with the latest version of Enfold last week. It seemed to fix the problem until I added more portfolio items
– deactivated all my plugins
– tried all the settings for display size, both manual and automatic
Thanks
1) No, this is not possible. Just one slug is supported
2) Insert following code into the quick css field
.avia-slideshow .image-overlay {
display: none !important;
}
3) Enfold displays a headline on all tag archive pages. By default it’s “Tag Archive for: XX”. If it doesn’t work on your website please post a link to the tag archive page. The taxonomy pages (portfolio categories) also display a headline – see: http://kriesi.at/themes/enfold/portfolio_entries/css/ (Category “CSS”)
4) Please insert following code into the quick css field
#top .avia-slideshow-arrows a {
text-indent: -600%;
}
Hey!
If you’re using the streched layout try the “header background image option”. Go to Enfold > Styling > Header and search for “Custom Background Image”. There you can upload your custom image.
Best regards,
Peter
Hey!
Can you post a link to the website please – I’ll investigate the css code. You can also try to add the code to a child theme stylesheet or to enfold/css/custom.css.
Best regards,
Peter
In wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesportfolio.php search for
switch($columns)
{
case "1": $grid = 'av_fullwidth'; if($preview_mode == 'auto') $image_size = 'large'; break;
case "2": $grid = 'av_one_half'; break;
case "3": $grid = 'av_one_third'; break;
case "4": $grid = 'av_one_fourth'; if($preview_mode == 'auto') $image_size = 'portfolio_small'; break;
case "5": $grid = 'av_one_fifth'; if($preview_mode == 'auto') $image_size = 'portfolio_small'; break;
}
and define a new case for “6” columns:
switch($columns)
{
case "1": $grid = 'av_fullwidth'; if($preview_mode == 'auto') $image_size = 'large'; break;
case "2": $grid = 'av_one_half'; break;
case "3": $grid = 'av_one_third'; break;
case "4": $grid = 'av_one_fourth'; if($preview_mode == 'auto') $image_size = 'portfolio_small'; break;
case "5": $grid = 'av_one_fifth'; if($preview_mode == 'auto') $image_size = 'portfolio_small'; break;
case "6": $grid = 'av_one_sixth'; if($preview_mode == 'auto') $image_size = 'portfolio_small'; break;
}
Hey!
Great design – I like the flourish vector ornaments.
Best regards,
Peter
Hi,
Have you tried using the Enfold > Styling > Use stretched or boxed layout? > Boxed Layout? I think it will solve all your problem. The layer slider width is too big, I don’t understand why you need 5000px on the slider.
Regards,
Ismael
Hi,
Please go to Enfold > General Settings, and the first dropdown allows you to select one of two sizes as well as the non-responsive option.
Thanks,
Nick
This is still a problem but I fixed it with a work around. I removed the links from the images and text and created a new layer with a blank div (using a span) to create a link in the correct location. I think the problem is that when you put a link on an image or a text field, the link is on the outside of the item and therefore has precedence (which ends up as default because the transition you set in the field is attached to the field not the outer link).
Hello i just bought Enfold and love it, i have try it in my secondary site… i want to run it in my main site where actually im using propulsion… 1.How is going to be the change?, i cant be without site for a day or more if i make a mistake…or something goes wrong!
Can i upload the theme… activare to try it and see what happens and if is not good go back to propulsion, without loosing all settings and templates?
What will happen with all setting, templates built in propulsion, do i have to run-desing all again for enfold?
2.How i do the language settings in Enfold? the WPML already runing with propulsion will keep working?Or i have to set back again all?
Thanks in advance!
Héctor.
Thank you for this information. But as I told weeks ago (https://kriesi.at/support/topic/easy-slider-problem), we don’t use any plugins beside template Enfold :( So this should not be the case …
Thanks Devin. I am currently using Enfold 1.6. How do I update this?
-Colin
Hi there,
I am helping a friend here. The site is:
http://www.barryyochlaw.com/
We just did a clean instal of the enfold theme and press the button to add dummy content. As you can see by visiting the site, it looks broken. I can see the error message “[LayerSliderWP] Slider not found” but I really don’t know what’s wrong or how to fix it. We use Dreamhost and they confirm the issue is with the theme (or install). We have deleted that dummy content as well as removed the theme folder from the FTP site and re-installed everything three times total.
Any help would be appreciated ASAP.
– Matt
I have two layers on my slides that are links and I can not remove the animation. These layers were not animated until I added the links. They are now “dropping” into the slideshow even though no animation is set. When I remove the link, the animation is also removed. Where is this animation set and how can I remove it? Here is a link: http://premierprimingllc.com/
Hello,
I seem to be running into problems in Safari (Chrome, Opera, IE, & Firefox work fine) with using the “pre” tag to display code in multiple tabs using the tab feature of Enfold. Specifically, when I open the page (shown below) in Safari, and when I click from one tab to another tab, the code, created by the pre code disappears in subsequent tabs. Would anyone know why, or more importantly, is there anything that I can do about it? What is really strange is that the code shows up in the tab that is originally displayed on the screen, but not when you click on other tabs the code is not shown.
Here is a the link:
http://www.helpwithstats.com/r-entering-data
Thanks for any and all help!
STATS4STEM
Hi. I building a news site and I need to be able to have multiple authors that are not users of the site. I want to integrate the co-authors plus, which seems to be the go-to plugin to do exactly what I need to do. However, I am unsure how to integrate co-authors plus into my enfold, template files so it can properly use the plugin. Please see here: http://wordpress.org/plugins/co-authors-plus/screenshots/ and here: http://vip.wordpress.com/documentation/incorporate-co-authors-plus-template-tags-into-your-theme/
Devin,
Thank you so much. I went ahead and just uploaded the enfold.zip, but I found your video extremely helpful. Please let me about other videos you have for the Enfold template.
Thank you again,
Ray