Hi, I have some questions that I hope you can answer for my site http://www.terenure5mile.com
1. Are there video’s that show how to configure Enfold and it’s settings?
2. The social icons in the header. On my site they are almost invisible. How can I change so that the rollover effect is the appearance of the icons all the time.
3. How do I set the text colour for the Widget titles in the Footer
Thanks, Denis
Hey controlC!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
.more-link {
background: red;
color: white!important;
padding: 10px;
}
Cheers!
Yigit
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
.av-main-nav > li > a { padding: 0 20px; }
Cheers!
Yigit
Hi Dude
Thanks for your help on this. Could I ask you to double check that please as it doesn’t seem to have made a difference?
I’m still getting the entry_without_sidebar class on that page.
I can see that I was close before with my own solution but that didn’t work either.
My solution was a bit more heavy handed but similar:
My solution was to change the line below from:
$current_post[‘slider’] = get_the_post_thumbnail($current_post[‘the_id’], $size);
to
$current_post[‘slider’] = get_the_post_thumbnail($current_post[‘the_id’], ‘entry_with_sidebar’);
this did work however it meant that the entry_with_sidebar image was being shown everywhere even in places where that wasn’t what was required such as where I was choosing to show blog posts with full size images within other pages.
I tried applying your solution both to my child theme and the core enfold theme and it didn’t seem to work – could you look again please?
Thanks
Joel
Hey lewisedavis!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.av_secondary_right .sub_menu>ul>li:last-child, .av_secondary_right .sub_menu>div>ul>li:last-child { padding: 0 10px; }
Regards,
Yigit
Hi kathrynmichaud!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
#header_meta { background: red; }
#header_main_alternate { background: orange; }
#header_main { background: blue; }
Regards,
Yigit
Hi Devin,
Thank you. This is the same as the theme on the server domain. I sent the screenshot to the provider too.
By now I solved the issue by reinstalling the theme (with the support of the provider!) as new and copying step by step the content, database and all the necessary. Now it works but I’m still worried for the next upgrade. It should be a different solution to avoid this mismatch and it can’t depend on which operating system the theme has been created… it should be tested on WIN and MAC as a rule before the release, don’t you agree ? I do not know if the next time the provider will be still available to collaborate and I do not feel like being ‘prisoner’ of the provider …
By now that’s all. Have a great day, Nona
Thanks!
I had it to start with but with the height and width of the image and the responsive layout it was hard to get a photo with a human in it to look good because of the cropping.
Any ideas on this?
I recently installed Enfold. I was able to install the dummy data but can’t modify the header. It’s not giving me the option. The “Header” button in the Enfold Theme Options page is not working. Thx for the help.
Hi there, I love your theme but I need some help please!
Is it possible to make the portfolios to open the full page of the project-portfolio post as a pop up like lightbox or something and giving us the url of the portfolio-post on the top?
Thanks
When all the videos I’ve embedded end they show a selection of related videos which I don’t want appearing http://www.test.theimplantcentre.com/wp-content/uploads/2014/04/Screen-Shot-2014-04-09-at-09.49.29.png
I’ve been onto Youtube and to prevent them from showing you have to ensure the iframe embedding code has rel=0 in it but with enfold you don’t use the iframe code you just use the url. Any ideas what I need to do to prevent them from coming up? I just want the video to go back to the beginning.
Many thanks
Rupert
Hey!
The size of the thumbnails is set from the size of the thumbnails you set in Settings>Media>thumbnail size in WordPress as far as I know. You then control the size of the displayed thumb by how many columns you choose on that portfolio items ajax data.
I changed the column count to a higher number just now for that single item which shrunk the thumbnail and made it appear not blurry since its container is smaller.
If you change the thumb size that is generated by WordPress you will need to regenerate your thumbnails with this plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
If you want to make any feature requests for the theme you can do so here: https://kriesi.at/support/enfold-feature-requests/
Cheers!
Devin
I don’t have any experience with XAMPP so your best route would be to check their support/faqs and to try and duplicate your online server specs exactly in the local server settings.
This reply has been marked as private.
I would prefer a more friendly picture on the start page!
Mostly fitness companies uses happy people practacing sports ;)
Hi IsaJourdain!
Thank you for using the support forum!
What do you mean by the “English page comes into French”? Do you mind posting screenshot of the issue or list the steps that you did on translating the page. Note that you need to set the theme options for both language when using the WPML for Enfold.
Regards,
Ismael
Hey!
Open up wp-content/themes/enfold/includes/loop-index.php and replace:
$size = strpos($blog_style, 'big') ? strpos(avia_layout_class( 'main' , false), 'sidebar') ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
with
$size = strpos($blog_style, 'big') ? strpos(avia_layout_class( 'main' , false), 'sidebar') ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
if(is_single() && strpos(avia_layout_class( 'main' , false), 'sidebar')) $size = 'entry_with_sidebar';
This modification should make sure that the “entry_with_sidebar” thumbnail size is used on the single post page.
Best regards,
Peter
Hey!
Thank you for using the theme!
Please go to Enfold > Header > Mobile Menu > Header Mobile Menu activation. Select the Activate for Smartphones and Tablets (browser width bellow 990px) option. This will force the mobile menu to show on iPad landscape mode.
If you added a css code that looks like this on custom.css or Quick CSS, please remove it:
@media only screen and (max-width: 990px) {
.responsive #header .main_menu ul {
display: none;
}
}
@media only screen and (max-width: 990px) {
.mobile_active #advanced_menu_toggle {
display: block;
}
}
Best regards,
Ismael
Hi!
Please go to Enfold > Theme Options and click the “Save” button. This will force Enfold to regenerate the dynamic stylesheet (wp-content/uploads/avia_dynamic/enfold.css) and then the issue should be fixed.
Regards,
Peter
Hey!
No, you don’t need to change the code in header.php. Just place this code:
add_action('wp_head', 'add_google_rel_author');
function add_google_rel_author() {
echo '<link rel="author" href="https://plus.google.com/profilecode/posts" />';
}
into the functions.php file and wp will add the line
<link rel="author" href="https://plus.google.com/profilecode/posts" />
to the “head” section when the page/html code is generated.
Cheers!
Peter
Hi!
You can use the custom css class feature (see: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) to apply a special styling to certain color sections. I.e. use the class “small_color_section” and then use:
#top #wrap_all .small_color_section {
height: 60px !important;
min-height: 60px!important;
}
to apply the 60px height attribute to all elements/color sections with the class “small_color_section “.
Cheers!
Peter
Hi,
Yep, latest version of Enfold and its happened on ALL versions to date (think I started using enfold in version 1.something).
Have you tried the steps I listed – does it go weird for you?
Hey johnwasneverhere!
I’m sorry but you’re not using an Enfold theme. Are you sure that this is the correct link? :)
Cheers!
Ismael
Hey!
You had WP 3.7.x, please update your WP to the latest version before updating the theme.
Best regards,
Josue
Hey benjjamieson!
Thank you for using the support forum.
I’m sorry but at this moment, I’m not entirely certain of the issue based on the information you have given in your post. The pages look ok when I visit the link you provided. If you wouldn’t mind providing us with a little more clarification about the issue (a screenshot perhaps), we’ll be happy to provide you with a response once we have a better understanding of the problem.
Note that you can change the single post style on Enfold > Single Post Style. You can also override the settings for title, sidebar, footer and transparency on each posts.
Regards,
Ismael
Hello!
It is possible but that would require a heavy customization and unfortunately that’s beyond the scope of the support we can offer. If you really need it try hiring a freelancer for the job or if you prefer request a quote here.
Cheers!
Josue
Hey Diggetydog!
Thank you for using the support forum!
Please change the option on Enfold > Header > Mobile > Menu > Header Mobile Menu Activation, set it to Activate for Smartphones and Tablets (browser width bellow 990px). If you don’t mind, we would like to ask for a screenshot of what you’re seeing on your end when viewing on mobile device. We will be happy to provide you with a response after.
Regards,
Ismael
Hey jtree5757!
Thank you for using the support forum!
The video background has been disabled on mobile devices. You should add a fallback image for every video background. You can remove the play button that you added on mobile device with this:
@media only screen and (max-width: 767px) {
#av_section_1 > div.container > main > div > div > span.av_font_icon.avia_animate_when_visible.av-icon-style-.avia-icon-pos-center.avia_start_animation.avia_start_delayed_animation {
display: none !important;
opacity: 0 !important;
}
}
I’m sorry but what you’re asking is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please do visit Werkpress for further customization or vote for the feature on our Feature Requests page.
If you have any further questions about the theme, we are more than happy to help.
Regards,
Ismael
Hi!
That should definitely work, is that code put at the very beginning of the file? try putting it at the bottom instead (and without the PHP opener symbol).
Best regards,
Josue
Yeah, but unfortunately that’s not something we can fix or improve at our end. In the meantime, as i said you can always rely on Enfold parallax elements.