Forum Replies Created
-
AuthorPosts
-
Hi Slade!
Please turn on Custom CSS field for ALB elements firstly ( http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and then give classes to your promobox elements such as promobox-one, promobox-two and promobox-three. Then add following code to Quick CSS in Enfold theme options under General Styling tab
.promobox-one { background-color: red !important; } .promobox-two { background-color: blue !important; } .promobox-three { background-color: orange !important; }Best regards,
YigitHey Annette!
Can you please post the link to your website?
You can add !important rule to your code to force it, as following.av_textblock_section { margin: 12px !important; }Best regards,
YigitHi!
You can use the code as following, in Enfold theme options > General Styling > Quick CSS field
.produktboks_1 { background-color: red!important; padding: 10px; }You are displaying the icons on the left, Kevin used them on the top so there were no padding issues. If you would like to display icon on top, you can use the code as following
.produktboks_1 .iconbox_top .iconbox_icon { background: red!important; }Regards,
YigitHi Nancy!
Please use following code instead and adjust the value as needed
div#after_section_2 .av_font_icon { margin-top: 4px; }Best regards,
YigitHey!
Can you please elaborate? A screenshot showing the issue would help. This is how it looks on my end – http://i.imgur.com/HPEit52.png
and the link works fine as wellCheers!
YigitHey Tommy!
Please see – http://kriesi.at/documentation/enfold/replace-the-default-blog-latest-news-title/
Cheers!
YigitHey!
Page load time is 4.67s. Please see Ismael’s post here to get it below 2s – https://kriesi.at/support/topic/slow-loading-website/#post-299076
You are welcome! Let us know if you have any other questions or issues. Have a great day! :)Regards,
YigitHi evilgglong!
Can you post the link to your page and point out the section where we can see the issue please?
Cheers!
YigitHey! :)
Please change the code to following one so it will be applied only on the avatar inside comment container
.comment_container .avatar { position: static; }Best regards,
YigitAugust 5, 2014 at 11:35 pm in reply to: Enfold features (shrinking header/up arrow) are not working #300442Hi Julian!
Please try deactivating all active plugins and check if that helps
Cheers!
YigitHey!
You had extra closing curly bracket in your custom CSS code. I removed it and now it is working fine. Please flush browser cache and refresh your page a few times
Best regards,
YigitHey!
Great! Glad you figured it out! Let us know if you have any other questions or issues
Regards,
YigitHey!
Code is not being applied. Please try adding it to Style.css file of your child theme in Appearance > Editor
Cheers!
YigitAugust 5, 2014 at 10:50 pm in reply to: I'd like to access the CSS file for my copy of Enfold. #300428Hi Barabbas!
Please see – http://kriesi.at/documentation/enfold/using-a-child-theme/
You can find CSS files inside Enfold/css folderRegards,
YigitAugust 5, 2014 at 7:17 pm in reply to: how to add Search link from MLS IDX into enfold page? #300384Hi!
You can use Blank Page template on your home page and header&footer will not be displayed. If you would like to remove only main menu on homepage, please add following code to Quick CSS in Enfold theme options under General Styling tab
.home .main_menu { display: none !important; }Regards,
YigitHey!
Please try adding !important rule as following
div#after_section_8 .avia_textblock { font-size: 15px!important; }Regards,
YigitHey jenki!
Can you post the link to your page and point out the section that you would like to center please?
Cheers!
YigitAugust 5, 2014 at 7:00 pm in reply to: Move buttons to bottom of color section on mobile devices #300374Hey!
Sorry for the late reply!
Elements are displayed in HTML order and the button that is on the bottom of left column will always be displayed before the right column. The simplest way would be turning on custom CSS field for ALB element ( please see – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and giving your buttons that are at the bottom of left 1/2 column element a custom class ( for example: custom-desktop-button ) and add an extra button with the same link to bottom of right 1/2 column with a unique class ( for example: custom-mobile-button ). And using following code in Quick CSS in Enfold theme options under General Styling tab, you can display the left button on desktop while keep extra button hidden, and hide left button on mobile and display extra button instead@media only screen and (max-width: 768px) { .custom-desktop-button { display: none!important; } .custom-mobile-button { display: block !important; }} @media only screen and (min-width: 769px) { .custom-mobile-button { display: none !important; }}Regards,
YigitHi!
You can try the workaround Josue posted here – https://kriesi.at/support/topic/how-to-trigger-specific-elements/#post-268697
Best regards,
YigitHey!
I have now checked on Safari and Firefox as well but it does still work fine on my end.
Which browser and OS are you using?Regards,
YigitHi ConnyQ!
According to this website – http://www.downforeveryoneorjustme.com/ your website it currently down. Please check it
Cheers!
YigitAugust 5, 2014 at 6:39 pm in reply to: Featured Image in Blog (Embedded Link, Responsive Design) #300363Hey ecoresearch!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
1-.single .blog-meta { pointer-events: none; }2-
@media only screen and (max-width: 767px) { .responsive .template-blog .blog-meta, .responsive .post_author_timeline, .responsive #top #main .sidebar { display: block; }}Cheers!
YigitHey!
You can simply remove this code from Quick CSS/Custom.css file
#header_main { background: #1e5799; background: -moz-linear-gradient(top, #5eb935 0%, #719430 50%, #507210 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5eb935), color-stop(50%,#719430), color-stop(100%,#507210)); background: -webkit-linear-gradient(top, #5eb935 0%,#719430 50%,#507210 100%); background: -o-linear-gradient(top, #5eb935 0%,#719430 50%,#507210 100%); background: -ms-linear-gradient(top, #5eb935 0%,#719430 50%,#507210 100%); background: linear-gradient(to bottom, #5eb935 0%,#719430 50%,#507210 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5eb935', endColorstr='#507210',GradientType=0 ); }Best regards,
YigitAugust 5, 2014 at 6:14 pm in reply to: how to add Search link from MLS IDX into enfold page? #300353Hey Igor!
You can try adding this code inside a Code Block element – http://pastebin.com/J57B54JE
but you are going to need to load CSS files and images used in the page to your server to display it correctly.Cheers!
YigitHey Mauro!
Yes, now it works! Please add following code to Quick CSS in Enfold theme options under General Styling tab
.news-thumb { height: 60px; width: 60px; }Thumbnails are now 50x50px – http://i.imgur.com/WlAgIAc.png
Regards,
YigitHey!
Please see screenshots here – http://imgur.com/a/H31Qs both in visual and text tab
Regards,
Yigit -
AuthorPosts
