Forum Replies Created
-
AuthorPosts
-
Hi rolfroyce!
Try this out, https://kriesi.at/support/topic/how-to-add-google-analytics-event-tracking-code-to-image-links-and-text-links/#post-326322.
Best regards,
ElliottOctober 1, 2015 at 6:12 pm in reply to: How to change the font colour of text within table within accordion #512331Hey richardelectrix!
Drag a codeblock element to your page and add this inside.
<style type = "text/css"> td { color: red !important; } </style>
Best regards,
ElliottOctober 1, 2015 at 6:10 pm in reply to: How to update theme and not lose custom sidebar and widgets #512330Hi ttem!
Which version are you updating from? Did you rename the theme? If so then that is going to save your contents under a different name so your settings will be lost on upgrading.
Cheers!
ElliottHey Jean!
You can do this, https://kriesi.at/support/topic/is-it-possible-to-modify-files-in-enfold-child/#post-218226, to overwrite shortcode files in your child theme.
Cheers!
ElliottOctober 1, 2015 at 6:05 pm in reply to: How to make a Grid Row to take 100% of the screen height #512324Hi DROR!
Not currently. Consider creating a feature request here, https://kriesi.at/support/enfold-feature-requests/, and if it gets enough interest then we may see something get added in a future update.
Best regards,
ElliottHey sprakelsoft!
Our image element has a caption hover feature where if you hover over the image the caption will display on top of it. You could try that out.
Cheers!
ElliottHey profumopuntoit!
That script is probably required for the AJAX to work. Have you contacted Woocommerce support about this?
Best regards,
ElliottHi WSRJohn!
You could try adding it to the bottom of the footer.php file. Or add this to the bottom of your functions.php file and insert the script inside it.
add_action('wp_footer', 'enfold_customization_footer_script'); function enfold_customization_footer_script(){ ?> insert your script here <?php }
Best regards,
ElliottHi worldfuturecouncil!
That button uses the
<button>
tag but ours use different HTML markup. You can add it’s class to our button CSS around line 688 in the /enfold/css/shortcodes.css file.Best regards,
ElliottHi!
I don’t see the white space your referring to, take a screenshot. You can center it with this.
<style type = "text/css"> #home .avia-image-container { position: absolute; top: 0px; left: 50%; transform: translateX(-50%); } </style>
Regards,
ElliottHey!
Not really sure how your using the LayerSlider there. It should be in it’s own container but you have it inside a textblock. You must have done some customization.
You can use this CSS as a quick fix though.
.home main { padding: 0px !important; }
Regards,
Elliott-
This reply was modified 9 years, 10 months ago by
Elliott.
Hi!
Yes, that’s correct.
You may want to consider using the filter instead, https://kriesi.at/support/topic/taxonomies/#post-124956.
Best regards,
Elliott-
This reply was modified 9 years, 10 months ago by
Elliott.
Hi!
Add this to your custom CSS.
.single-product .title_container, .post-type-archive-product .title_container { display: none !important; }
Cheers!
ElliottHi codecreative!
You need to update the theme to the latest version, 3.3.2, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Your currently using 2.9.1.
Best regards,
ElliottSeptember 30, 2015 at 5:54 pm in reply to: Format box not showing in post. Enfold Version: 3.1.5 #511728Hi!
We don’t have anyone that does custom work right now. You can create a feature request here, https://kriesi.at/support/enfold-feature-requests/, and if it gets enough interest we will probably see a new element get added for this in a future update.
Regards,
ElliottHi Anton!
In your child theme create a folder called “includes” and copy the loop-index.php file into it. It will be used instead of the parent theme.
Best regards,
ElliottHey!
When you set your logo make sure to use the full size in the image settings instead of the 80 x 80 thumbnail that you currently have set.
Cheers!
ElliottHi kburbank!
There shouldn’t be any space there. Send us a link to your page and we’ll take a look. You can set your reply as private if you wish.
Regards,
ElliottHey!
Did you deactivate all of your plugins?
Regards,
ElliottSeptember 30, 2015 at 5:01 pm in reply to: Open page in modal lightbox without sidebars header and footer #511691Hi!
Edit the page and set it to use the “Blank” template.
Best regards,
ElliottSeptember 30, 2015 at 4:55 pm in reply to: Show price in product page built with avia layout builder #511683Hi!
You can add the price in a special heading element or textblock element above that.
Regards,
ElliottHey!
When you edit the LayerSlider it’s the “Configure post options” button. It’s next to where you set the link for the slide.
We also have a post slider element but it’s not fullscreen.
Cheers!
ElliottHi!
The gallery is going to use 100% of the page width or 100% of the container it’s in. So you’ll want to use images at least 1300px wide (depending on what you have the maximum container width value set in Dashboard > Enfold > General Layout > Dimensions).
You can add extra columns to shorten the container width like how you said. A column setup such as 1/3 + 1/3 + 1/3 would work well. You can set the gallery in the middle column so it looks centered.
Cheers!
Elliott-
This reply was modified 9 years, 10 months ago by
Elliott.
Hey!
Is there a certain page it’s happening on? I surfed around your site on Android but all of the pages looked fine to me.
Regards,
ElliottSeptember 30, 2015 at 4:37 pm in reply to: Overridden Enfold CSS attribute still affecting styling #511666Hi!
The Quick CSS setting only gets added on the front end. For the dashboard you can add CSS in that file I listed or if the plugin your using has a section for custom CSS then you could use that as well.
Cheers!
ElliottHi edney23!
When you edit your menu in Dashboard > Appearance > Menus create a custom link and it’s URL to a hashtag, “#”. It won’t actually link anywhere and you can use it for dropdowns.
If you don’t see the custom link section then click on “Screen Options” in the top right hand corner of your page and check it to display.
Cheers!
ElliottHi richardelectrix!
Deactivate all of your plugins and update Enfold to the latest version, 3.3.2.
Best regards,
ElliottHey tvgverlag!
I don’t recommend changing those for SEO purposes but if you really want to then you can do so in the /enfold/includes/admin/register-widget-area.php file.
'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>',
Cheers!
ElliottHey!
Add this to the bottom of your functions.php file.
add_filter( 'avia_widget_time', 'enfold_customization_change_widget_time' ) function enfold_customization_change_widget_time( $time ) { $time = get_option('date_format'); return $time; }
Best regards,
ElliottHey!
1. I checked your site but I see 3 images and they all appear to be assigned to “2010” or “2011” so it appears to be working fine. Which one is it that does not belong?
2. The magnific popup script we are using doesn’t appear to have that option. You could try disabling it and inserting your own plugin such as prettyPhoto.
Cheers!
Elliott -
This reply was modified 9 years, 10 months ago by
-
AuthorPosts