Forum Replies Created
-
AuthorPosts
-
Hi MichelleRhodes!
Navigate to Dashboard -> Enfold -> Demo Import and you can import all of the demos here. Let us know if you have any other questions.
Best regards,
ElliottHey!
It looks fine on my end. Make sure to clear your browser cache. If your still having issues then take a screenshot and highlight what your seeing and what your trying to do so we can get a better idea of what’s going on.
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hey!
You will need to paste it into the bottom of that page instead of in your quick CSS so it does not get applied globally. Also make sure that you insert a compact testimonial right below the big testimonial.
What this CSS does is just hide the big testimonials and display the compact ones when the screen size is small.
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hi Sumeru!
This is possible with a plugin. Perhaps something like this will work for you, https://wordpress.org/plugins/be-subpages-widget/.
Best regards,
ElliottNovember 2, 2014 at 8:37 pm in reply to: I don't want the images file names to show on mouse hover #344973Hey Larestours!
That is a browser behaviour that displays the title of the image. As far as I know the only way to get rid of it is to remove the title text that you set for the images.
Best regards,
ElliottNovember 2, 2014 at 8:32 pm in reply to: ENFOLD : unwanted, spurious ads appearing between image captions! #344971Hi Alexoidea!
That looks like a Chrome extension. Have him deactivate all of his Chrome extensions and plugins to see if they go away.
Cheers!
ElliottHi Eline!
Your entypo-fontello iconfont is not loading for some reason. Let’s try the following,
1. Deactivate all plugins.
2. Completely delete the theme before downloading / uploading a fresh copy.If the above steps do not fix it then send us a WordPress and FTP login so we can take a closer look. Be sure to set your reply as private.
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hi!
Are you sure your adding it to the end of the file? Try uploading a fresh copy of the file and add it to the very bottom.
Cheers!
ElliottHi heufti65!
Try adding this to your custom CSS,
#wrap_all { overflow: visible !important; }
Cheers!
ElliottNovember 2, 2014 at 7:45 pm in reply to: Installed bbpress but can't see forums in the dashboard #344961Hey!
I found this topic at the bbPress support forums, https://bbpress.org/forums/topic/cannot-see-forums-tab-in-wordpress-dashboard/.
Can you create us an admin login so we can take a closer look?
Regards,
ElliottHey joshuati!
Can you upgrade the login to admin so we can take a closer look at your settings?
Regards,
ElliottHi Aefiel!
You can do that with the color section element. I went ahead and added it in with the advanced layout editor so you can see how it’s done. To do it on other pages just drag the color section over and select which color you want to use.
Best regards,
ElliottHi!
It looks like your missing an ending bracket on this part,
.page-id-49 .avia-icon-list .iconlist_icon { height: 30px; width: 30px; line-height: 24px; font-size: 14px; margin-bottom: 20px;
Best regards,
ElliottHi!
For the hovers you need to add another rule and check the “Apply only to mouse hover state” checkbox. I went ahead and added it for you.
Cheers!
ElliottHey C-LabMX!
The mega menu looks fine on my end. Go ahead and clear your browser cache and take a screenshot of what your seeing so we can get a better idea.
As for the responsive menu icon try adding this to your custom CSS,
#advanced_menu_toggle, #advanced_menu_hide { top: 50% !important; }
Cheers!
ElliottHi momon!
Your portfolio entries should have the tags displayed by default. Make sure Enfold is updated and send us a link so we can take a closer look. You can set the link as private if you wish.
Cheers!
ElliottHi ahmadabugosh!
I see the icons fine on my end. Try clearing your browser cache and any caching plugins you might have installed.
Best regards,
ElliottHi!
So on the latest post with the big preview image the <!–more–> tag is not working? Go ahead and take a screenshot and highlight what your trying to do so we can get a better idea.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hi mmocilac!
Do you mean you want to have a LayerSlider inside a popup? That would take a lot of time and code and would have to be considered custom work. If you would like to hire someone for this customization then see here, http://kriesi.at/contact/customization.
Best regards,
ElliottNovember 2, 2014 at 5:58 pm in reply to: Scaling / Fitting Image by Both Specific Width and Heigh #344915Hi!
Thanks for the link I see what you mean now. The width is not being set to 100% on your second image in the color section for some reason. Try adding this to your custom CSS,
.container .avia-image { width: 100% !important; }
@El_Chapo, We will continue in your other topic.Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hi waterwalk!
What is your permalink setting set to? Let’s try the following,
1. Update Enfold to 3.0.2, your currently using 2.9.2.
2. Deactivate all plugins.
3. Delete your .htaccess file and then set your permalinks to the default settings and save. Pay special attention to any messages that WordPress gives you after saving.If your still having issues after doing the above then send us an admin login and we’ll take a closer look. Be sure to mark the reply as private.
Best regards,
ElliottHi aovivo!
What is the CSS your trying to use? You may need to use the !important rule to make sure it gets applied. Go ahead and post your CSS here and we’ll take a look.
Best regards,
ElliottHi!
It would be best to always use the latest version. It looks like it’s displaying fine now. Let us know if you have any other questions.
Best regards,
ElliottHi ojasray!
The image will be scaled to fit your screen when you open it up. I think if you have it open in it’s original dimensions then it would be hard for the user to scroll between them or close the image. We can add a download link though.
Open up
/enfold/js/avia.js
and find line 847,return title;
And change it to this,
return title + ' - <a href = "'+item.el.find('img').attr('src')+'">Download</a>';
Just make sure to set the thumb size to “No scaling”.
Best regards,
ElliottHey!
Add this,
.toggle_icon { left: auto !important; } .hor_icon:hover, .vert_icon:hover { border-color: red !important; }
Best regards,
ElliottHey koala!
Try adding this to your custom CSS,
.logo, .logo a { height: auto !important; }
Best regards,
ElliottHi!
Sounds like a caching issue, are you sure all plugins are deactivated and your browser cache is cleared? Go ahead and update our login to admin role and we’ll take a closer look.
Cheers!
ElliottHi!
Try adding this to the bottom of your
/enfold/functions.php
file.function custom_category_excerpt( $c ) { if ( is_category() ) { return substr( get_the_content(), 0, 200 ); } return $c; } add_filter( 'the_content', 'custom_category_excerpt', 999, 1 );
Regards,
ElliottHey!
I don’t think setting a height value is good because it makes the images look stretched when you resize the browser. Are you wanting to make it so the image sizes stay the same even when resizing?
Best regards,
ElliottNovember 2, 2014 at 3:51 pm in reply to: Installed bbpress but can't see forums in the dashboard #344865Hey DROR!
Try deactivating all of your plugins including bbPress and then activate only bbPress to see if they display. If they do then reactivate your plugins one by one to see which one is causing the issue.
Regards,
Elliott -
AuthorPosts