Forum Replies Created
-
AuthorPosts
-
Hi NicRW!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 480px) { h1.av-special-heading-tag { font-size: 24px!important; }}Regards,
YigitHey Sarah-B!
Yes, version 2.3.1 is very old and not compatible with WordPress 4+.
Please refer to this post and create a testing environment – http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/ and then download pre-built Enfold child theme here – http://kriesi.at/documentation/enfold/downloads/
You can add your custom CSS codes into Style.css file of your child theme and you can apply the changes you made on Footer.php to the same file. For the changes you made on Header.php file, please use Enfold/includes/helper-main-menu.php file. You can use this website to check the differences between files – https://www.diffchecker.com/Regards,
YigitHi!
You can find Quick CSS field in Enfold theme options > General Styling tab at the bottom – http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
Regards,
YigitHi!
Can you please try installing this plugin – https://wordpress.org/plugins/bowe-codes/ and creating a Groups page using shortcodes and see if it helps?
Cheers!
YigitHey benjaminbreton!
Please see – http://kriesi.at/documentation/enfold/setting-your-home-and-blog-pages/ and http://kriesi.at/documentation/enfold/have-a-different-single-page-blog-layout/
Cheers!
YigitFebruary 20, 2015 at 4:57 pm in reply to: Enfold 3.0.8 Advanced Layout Editor Not Working For Me Anymore #399743Hi!
Glad you figured it out and thank you for sharing your solution.
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)Best regards,
YigitHey!
Please add the code to Functions.php file in Appearance > Editor :)
Best regards,
YigitHey!
You can replace the code with following one
@media only screen and (max-width: 480px) { .responsive .logo { opacity: 0!important }}and that should help
Regards,
YigitHi gianmarizzi!
Please see – http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
Cheers!
YigitHi Portanuova!
Please try adding following code to Functions.php file in Appearance > Editor
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1); function avia_change_postgrid_excerpt_length($length) { $length = 200; return $length; }If that does not work, please post the link to your website
Best regards,
YigitHey!
We will be waiting to hear from you. Until you reply to this thread, topic will be on hold.
Regards,
YigitHi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 480px) { .responsive .logo { display: none !important; }}Regards,
YigitHey!
In that case, if you really have to use JetPack plugin, please de-activate it when you need to make changes using ALB.
Cheers!
YigitHi!
Please add following code to Quick CSS
#top .av_header_transparency .avia-menu-fx { bottom: -1px; width: 100%; left: 0; }Cheers!
YigitFebruary 20, 2015 at 4:30 pm in reply to: How to add a vertical separator between columns within a section? #399725Hey!
Please flush browser cache and refresh your page a few times. It does work fine on my end – http://i.imgur.com/gk3ccuS.png
Regards,
YigitHey!
Please try adding following code to Quick CSS in Enfold theme options under General Styling tab
.avia_textblock p { font-size: 16px; }Best regards,
YigitFebruary 20, 2015 at 3:46 pm in reply to: How to add a vertical separator between columns within a section? #399706Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.page-id-3244 .avia-builder-el-8,.page-id-3244 .avia-builder-el-18,.page-id-3244 .avia-builder-el-28,.page-id-3244 .avia-builder-el-38, .page-id-3244 .avia-builder-el-48,.page-id-3244 .avia-builder-el-58,.page-id-3244 .avia-builder-el-68 { border-left: 2px solid #e2e2e2; padding-left: 60px; }Regards,
YigitHi dlannetts!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.sidebar_tab .tab_titles .tab { border-color: #f2f2f2; }Cheers!
YigitHi!
If you do not mind, can you post a temporary admin login here privately?
Best regards,
YigitFebruary 20, 2015 at 3:13 pm in reply to: How to add a vertical separator between columns within a section? #399681Hi!
According to this site – http://www.downforeveryoneorjustme.com/ your website is currently down. Please make sure that you have posted the correct link
Cheers!
YigitHi!
Have you enqueued the script by adding following code to Functions.php file in Appearance > Editor?
function enqueue_custom_js() { wp_enqueue_script( 'custom-js', get_template_directory_uri() . '/js/custom.js', array(), '1.0.0', true ); } add_action( 'wp_enqueue_scripts', 'enqueue_custom_js' );If not, please do so
Cheers!
YigitHey santoshachari!
You can right click on the menu item and use menu item ID – http://i.imgur.com/peXS57G.png?1
If you do not mind posting the link to your website and pointing out the changes you would like to make, we would be happy to help as well :)Regards,
YigitHey!
You can download – http://www.sublimetext.com/2 which is a free text editing software. It highlights your code and once you get used to it you can easily spot errors – http://i.imgur.com/pDqBWHc.png
Best regards,
YigitHey!
Please add following code to Quick CSS
#top .fullsize .template-blog .post-title { text-align: left !important; } #top .fullsize .template-blog .post-meta-infos { text-align: left; font-size: 18px; border-bottom: 1px solid #e2e2e2; padding-bottom: 20px; }Cheers!
YigitHey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.header-scrolled span.avia-menu-fx { bottom: 15px!important; }Cheers!
YigitHi!
You added rules like “text-color: red;” which should be simply “color: red;”, some double semi colons and there was an unclosed media query.
Cheers!
YigitFebruary 20, 2015 at 2:49 pm in reply to: After Upgrade – Frontpage on the right side (Ninja Popups) #399661Hi!
Can you please flush browser cache and refresh your page a few times? This is how your website looks on my end – http://i.imgur.com/eDTroJf.png
Cheers!
YigitHi Marssolutions!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
@media only screen and (max-width: 1024px) and (min-width: 768px) { .avia-slideshow .avia-caption .avia-caption-title { font-size: 15px !important; } .caption_framed .slideshow_caption .avia-caption-content p, .caption_framed .slideshow_caption .avia-caption-title, .avia-caption .avia-caption-content p, .avia-caption .avia-caption-title { font-size: 13px !important; }}Best regards,
Yigit -
AuthorPosts
