Forum Replies Created
-
AuthorPosts
-
Hey Ad-Min7477!
Thank you for providing us with direct links.
May we have temporary access, in order to take a closer look at your current settings?
Be sure to use the Private Content section.
Cheers!
DakeHey Fabiola!
May we have a link or temporary access credentials for your website to take a closer look?
Be sure to include it in the “Private Content” section.
Best regards,
DakeHi Nadinekrijgh!
You can actually change the margins between each element by editing the .av_one_third class.
av_one_third { margin: 0 !important; }
You can change the margin by using the above or by using margin-left/margin right to be more specific.
Best regards,
DakeHey Nadinekrijgh!
This isn’t possible with css alone. Similiar to how this thread mentions:
https://wordpress.org/support/topic/custom-logo-and-background-on-specific-page
You would need to include conditional code in the header.php including the page-id and all relevant classes for the logo to be different on certain pages.
Cheers!
DakeHi wiwaldi79!
You can have an excerpt be displayed below the when using the blog grid view by selecting “Title and Excerpt” in the Define Blog Grid layout.
Cheers!
DakeHi Koala,
The logo is now displaying at the right size in safari, using the following css in your custom css file:
/*Logo fix for safari*/ .logo img{ max-height: 180px !important; }
The size for mobile is also displaying fairly larger, if you would like the size to be changed let us know and we can get a media query ready.
Regards,
DakeHi Darran,
In order to reduce the spaces in between the elements (left and right) you may edit the .av_one_fourth class.
Here is an example of a comfortable change in width,height and left/right space:
.av_one_fourth { margin-left: 2% !important; width: 22.5% !important; }
As for the space above and below each post you can use the .flex_column class as shown below:
.flex_column { max-height: 150px !important; }
These are only examples, you can change them to values that suit you better. All changes should be inserted in your custom css section located in your theme options.
Regards,
DakeHi Cara,
I’m glad to know that you got everything sorted on your end.
I’ll definitely notify Kriesi about your experience.
Regards,
DakeJuly 2, 2015 at 8:41 pm in reply to: How to align items to center on mobile but to the right or left on desktop #467749Hey Matt,
You could also use “margin: 0 auto” with a media query in this case, but you would need to specify the width of each element you’d like to center.
For example:
@media only screen and (max-device-width: 736px) { .class_name { width: 200px !important; margin:0 auto !important; }
Best regards,
DakeHi Hotelsolutions!
Generally speaking you can apply the media query to .flex_cell.
For example you can use something similar to the below css in the custom css section in your theme options.
@media only screen and ( min-width: 600px ){ .flex_cell { min-height: 200px !important; max-height: 300px !important; } }
Or you can be more specific by including the .flex_cell_inner, .av_one_fourth (depends on number of cells) or .avia-builder-el-1 (depends on number of cells) classes.
Best regards,
Dake- This reply was modified 9 years, 4 months ago by Dake.
Hey HighschoolAustralia!
Here’s a quick step guide to quickly make tables using the shortcode wand then importing the it into a tab layout:
1. Select the table option from the wand icon.
2. You can now enter your pricing information via the table editor.
3. Once the table has been completed, you will be left with the shortcode for the entire table.
4. Finally copy and paste the shortcode into the tab secton of your choice.
Cheers!
Dake- This reply was modified 9 years, 4 months ago by Dake.
Hi Milan!
In that case you can simply remove the portfolio tab on that specific blog page as shown below:
http://www.awesomescreenshot.com/image/376005/472b05a98e4e7f08241ed81af078072c
Alternatively you can provide us with an account to make the change ourselves on your website.
Be sure to use the Private Content section.
Cheers!
Dake- This reply was modified 9 years, 4 months ago by Dake.
Hey caip!
I’m experiencing the same error on an ipad on my end too.
It appears to be an on-hover effect causing the issue (because the ipad uses a touchscreen), may we have access to your website in order to take a closer look?
Be sure to use the private data section again.
Cheers!
DakeHi Jan,
This is a known issue for the Yoast team.
Possible solutions can be found and performed by following the steps here:
Along the “A 404 not found error on the sitemap” section – http://kb.yoast.com/article/123-xml-sitemap-errors
or here:
http://www.wpbeginner.com/wp-tutorials/how-to-fix-yoasts-wordpress-seo-sitemap-404-error/
You might also experience the same error for up to 24 hours even after making changes to your sitemap.
Best regards,
Dake- This reply was modified 9 years, 4 months ago by Dake.
Hey Milan!
Just to confirm, do you want to remove the tab title, but keep the content. or remove the entire tab and it’s content?
As an alternative you can try adding the below in your quick css section found in your theme options:
.tab_titles div[data-fake-id="#tab-id-2"] { visibility: hidden !important; }
What this does is, it will remove the tab button, but then you won’t be able to view the content of that tab since it is not select-able.
Best regards,
Dake- This reply was modified 9 years, 4 months ago by Dake.
Hey jmeudt22!
I would recommend that you try disabling your other plugins and activate the twenty fifteen theme as an intial test.
If you’re still getting the same or a similar error, please provide us with credentials for your website (using the “private content” section) so that we can take a closer look.
Cheers!
DakeHey Woutski,
You can actually force each text block to be inline with each thumbnail using position css.
For example you can wrap the text in the second and third text block in a div and their own classes. Once that’s done you can insert css similar to the below in your custom css found in your theme options.
position: relative; right: 50px;
As for the width, that can be achieved by using width css as below:
width: 200px;
Best regards,
Dake- This reply was modified 9 years, 4 months ago by Dake.
July 2, 2015 at 1:50 am in reply to: WooCommerce Product image lightbox check box missing from settings #467301You’re welcome John :)
Cheers!
DakeJuly 2, 2015 at 1:32 am in reply to: WooCommerce Product image lightbox check box missing from settings #467296Hey John,
I have tested and can confirm that the Image Watermark plugin by dFactory works seamlessly with Enfold thus far:
https://wordpress.org/plugins/image-watermark/
It has a lot of the standard features that a watermark plugin should have. It’s a free plugin too so you can try it out and see how it fares.
Cheers!
DakeHey Woutski,
In order to disable the animations for the gallery, you can comment out or remove the below code in your shortcodes.css file (enfold > css > shortcodes.css):
/*gallery animation*/ .avia_transform .avia-gallery-thumb img{ opacity: 0.1; -webkit-transform: scale(0.5); transform: scale(0.5); } .avia_transform .avia-gallery-thumb img.avia_start_animation{ -webkit-animation: avia_appear 0.9s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Safari 4+ */ animation: avia_appear 0.9s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* IE 10+ */ opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
Personally I would recommend performing this step using a child theme: http://kriesi.at/documentation/enfold/portfolio-item/create-a-child-theme/
Best regards,
Dake- This reply was modified 9 years, 5 months ago by Dake.
Hey Liz
In order to get the yelp icon to display with your other social icons, you can try the solution below.
First you’ll need to locate this code:
‘scrolltop’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue876’),
Add this code underneath the above code:
‘yelp’ => array( ‘font’ =>’fontello’, ‘icon’ => ‘ue800’),
Next you’ll need to locate the register-admin-options.php via ftp or otherwise (enfold > includes > admin > register-admin-options.php)
Once you have it open, find this code on line 1826:
‘Youtube’ => ‘youtube’,
Add this code underneath the above code:
‘Yelp’ => ‘yelp’,
Once that’s been done, Yelp will be an available icon in the social profiles section of your theme options.
Regards,
Dake- This reply was modified 9 years, 5 months ago by Dake.
-
AuthorPosts