Forum Replies Created
-
AuthorPosts
-
October 29, 2014 at 4:10 pm in reply to: How to change background & font color of Heading Row and Pricing Row #342770
Hi onegirlrtw!
Please add following code to Quick CSS
.main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-heading-row .pricing-extra { background-color: red; color: black; border-color: red; } .main_color .pricing-table li.avia-pricing-row, .main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-pricing-row .pricing-extra { background-color: blue; color: green; border-color: blue; }Cheers!
YigitHi!
Do you mind creating a temporary admin login and posting it here privately? I have no issues seeing/using mobile menu but we may find something on the backend
Regards,
YigitHey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 990px) { .avia-content-slider .slide-image, .avia-content-slider .slide-image img { width: 100%; }}Seems like you figured out border issue – http://i.imgur.com/dhnq1oq.png ? :)
Cheers!
YigitHi Marie!
Exactly. You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
Regards,
YigitHey!
Please create a custom JS file ( could be named custom.js ) and place it inside your child theme/js folder and add following code to Functions.php file
function custom_js_enqueue() { wp_enqueue_script( 'custom-js', get_template_directory_uri() . '/js/custom.js', array(), '1.0.0', true ); } add_action( 'wp_enqueue_scripts', 'custom_js_enqueue' );or add the code to Google Analytics field in Enfold theme options
Cheers!
YigitHi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.single .entry-content-wrapper .post-title { background-image: url(https://equineandcaninenews.com/wp-content/uploads/black-line1.jpg); background-size: contain; } .single .entry-content-wrapper .post-title > a { background-color: white; }Cheers!
YigitHey didoulr!
Please try de-activating all active plugins and check if that helps
Regards,
YigitHey NSCduclos!
Please try using this – https://wordpress.org/plugins/wordpress-mobile-pack/ or this https://wordpress.org/plugins/mobile-menu/ plugins
Regards,
YigitHi!
Please add following code to Quick CSS
.page-id-39 .avia-promocontent { margin-top: -24px; }Regards,
YigitHi!
Please add following code to Quick CSS
.page-id-557 form { font-size: 16px; } label[for="pwbox-557"] { margin-top: 15px; } input#pwbox-557 + input[type="submit"] { padding: 14px; min-width: 120px; font-size: 18px; border-radius: 5px; }Regards,
YigitHi!
Please add following code to Quick CSS
1-.main_color #js_sort_items a.active_sort { color: red; }2 & 3- Can you please post a screenshot and show the changes you would like to make?
Regards,
YigitOctober 29, 2014 at 2:37 pm in reply to: Google Richsnippets (Some schema data is missing in Enfold theme) #342712Hey!
Please remove the code you added from functions.php file via FTP.
Please refer to Peter’s post here to change archive layout – https://kriesi.at/support/topic/how-to-get-a-different-layout-for-the-blog-page-without-breaking-breadcrumbs/#post-256745Cheers!
YigitHey!
Did you subscribe to cloudflare for your website? Please try to disable Rocket Loader (Asynchronous Loading of Javascript). https://support.cloudflare.com/hc/en-us/articles/200168056
Regards,
YigitHi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.avia-promocontent { margin-right: 0; } .av_promobox .avia-button { position: relative; right: 100%; top: auto; margin-top: 10px!important; } .av_promobox .avia-button.avia-size-medium { margin-top: 0; }Cheers!
YigitOctober 29, 2014 at 1:29 pm in reply to: Woo commerece and paypal icons ENFOLD Version 3.0.2 #342685October 29, 2014 at 1:28 pm in reply to: I mess my website for attempting to update the version #342684Hi!
In cPanel, please go to File Manager > your WordPress installation folder > wp-content > themes and upload the theme there.
Regards,
YigitHi!
You are using very old version of the theme Petr. Please refer to this video and update the theme to the latest version 3.0.2 via FTP – http://vimeo.com/67209750
Cheers!
YigitOctober 29, 2014 at 1:22 pm in reply to: Utrecht designer needed for Enfold/Woocommerce site build in Dutch. #342679Hi Derrick!
I sent an e-mail to Jeff and asked to check the topic. Please kindly wait to hear from him
Best regards,
YigitOctober 29, 2014 at 1:17 pm in reply to: Help!!! Help!!! Issue with latest update and now website isn't working!!! #342678Hey!
If you did not change any codes, you can update the theme – http://vimeo.com/67209750
Best regards,
YigitOctober 29, 2014 at 12:32 am in reply to: Mobile View Not Displaying Image Thumbnails on Category Pages & Showing Dates #342490Hi!
Please flush browser cache on your mobile device, i just checked your website on my iphone and captions are not showing on my end – http://i.imgur.com/WD8z6TW.png
Cheers!
YigitOctober 29, 2014 at 12:19 am in reply to: I mess my website for attempting to update the version #342483Hi Latinomics!
Please try re-updating the theme via FTP – http://vimeo.com/67209750
and make sure to overwrite all filesCheers!
YigitOctober 29, 2014 at 12:18 am in reply to: Woo commerece and paypal icons ENFOLD Version 3.0.2 #342482Hey!
Please try adding following code to Quick CSS
a.about_paypal { display: block; }It should look like this – http://i.imgur.com/IQnFmCs.png
Best regards,
YigitHey!
Please go to Appearance > Editor and open functions-enfold.php file and find
if(version_compare($settings['wpversion'], '3.8', '>=' )) { $entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); } else { $entries['prev'] = get_previous_post($settings['same_category']); $entries['next'] = get_next_post($settings['same_category']);and change it to
if(version_compare($settings['wpversion'], '3.8', '>=' )) { $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); } else { $entries['next'] = get_previous_post($settings['same_category']); $entries['prev'] = get_next_post($settings['same_category']);Regards,
YigitHi!
How do you implement Pinterest pins to your website?
P.S.: Very nice website and awesome illustrations!Best regards,
YigitHi 21technology!
Please refer to Ismael’s post here – https://kriesi.at/support/topic/extra-long-load-times/#post-338850 :)
Cheers!
YigitHey!
Thank you for your kind words! :)
Currently it is not possible. You can go to Enfold theme options > Header > Mobile Menu and choose to display mobile menu at 990px width. If you would like to display it on screens wider than 990px, please request or vote if already requested, such feature here – https://kriesi.at/support/enfold-feature-requests/Best regards,
YigitHi Adendum!
Please use Separator/whitespace element – http://i.imgur.com/WuZiJ1y.png :)
Regards,
YigitHey!
@hermelina Do you mind creating a temporary admin login and posting it here privately?Regards,
Yigit -
AuthorPosts
