Forum Replies Created
-
AuthorPosts
-
Hey Peter!
I think what your wanting to do is add this to a codeblock element in your page.
<style type = "text/css"> .av_font_icon { width: 30px; } </style>Best regards,
ElliottHi beingwithbyronkatie!
Try adding this to your custom CSS.
#header_meta { background: transparent !important; } .logo { top: -20px !important; }Regards,
ElliottHi Jagrav!
I can’t think of any reason why it would. Be sure to create a backup before updating and let us know how it goes.
Cheers!
ElliottHey WKD1!
I couldn’t figure out which version your using. If it’s not 3.0.8 then be sure to update to the latest version. Also be sure to deactivate all plugins while testing.
Best regards,
ElliottHey Cevik_Kuersad!
Try adding this to your custom CSS.
#top .fullsize .template-blog .post .entry-content-wrapper > * { max-width: 800px !important; }Best regards,
ElliottHi HiDrew!
Add this to a codeblock element in your page.
<style type = "text/css"> .avia-testimonial-wrapper { left: 50% !important; position: relative; transform: translate(-50%, 0px); } </style>The bullet points should be the same as the font size. Are you trying to increase the bullets but leave the font size alone? You could try adding a span inside the li and then use this CSS.
li { font-size: 20px !important; } li span { font-size: 12px !important; }But you would have to surround it all with another element and target it that way so it doesn’t mess up your other areas.
Regards,
ElliottHey Chris!
Are you using the compact testimonial slider? Are you trying to do something like this?
.avia-testimonial-image { float: none !important; position: absolute; top: -60px; left: -60px; }Regards,
ElliottFebruary 14, 2015 at 6:08 pm in reply to: socket on "services" page doesn't have correct properties #396181Hey jackhuntercorp!
It’s probably an element your not closing properly. Send us a WordPress login and we’ll take a look.
Cheers!
ElliottHey Jorge!
It looks like it’s being added form the Woocommerce CSS.
Try adding this to fix it.
#top #wrap_all #footer ins:before { content: "" !important; }Regards,
ElliottHey HiDrew!
Add this to your custom CSS.
.template-single-blog .post-meta-infos { font-size: 14px !important; text-align: left !important; } .template-single-blog .entry-content { border-top: 1px solid black; padding-top: 20px !important; }As for the extra text you could try adding it after line 182 in /enfold/includes/loop-index.php.
echo '</span>';Best regards,
ElliottHi rynleigh!
Try adding this to the bottom of your functions.php file.
add_action( 'wp_footer', 'enfold_customization_custom_scripts' ); function enfold_customization_custom_scripts() { ?> <script type = "text/javascript"> jQuery(document).ready(function(){ // your custom javascript goes here }); </script> <?php }Regards,
ElliottHi atrixdave!
Try adding this to the bottom of your functions.php file.
add_filter( 'avf_title_args', 'enfold_customization_change_title_heading' ); function enfold_customization_change_title_heading( $args ) { $args['heading'] = 'h4'; return $args; }Cheers!
ElliottFebruary 14, 2015 at 5:53 pm in reply to: Enque Parent /CSS/ Directory in Enfold Child Theme #396174Hey dnj14!
Your trying to embed CSS directly into some files? Instead of doing that just place all of your CSS in the child theme stylesheet. If you need to target a specific page then you can use the page ID like so.
.page-id-12 h3 { font-size: 20px !important; }Regards,
ElliottHey fwillmann!
Try adding this to your custom CSS.
.slide-entry-wrap .slide-meta-comments, .slide-entry-wrap .slide-meta-del { display: none !important; }If that’s not working then send us a link and we’ll take a closer look.
Best regards,
ElliottHi rene!
Your code should be working I think. You can also use this plugin, https://wordpress.org/plugins/multiple-post-thumbnails/, to easily add support for your custom post types.
Regards,
ElliottHi mathomate!
Are you trying to create a custom blog layout? It’s kind of bordering on custom work but send us a link to your page and take a screenshot highlighting what your trying to do and we’ll take a look.
Cheers!
ElliottHi torndownunit!
Try adding this to your custom CSS.
.cart_dropdown, #cart_dropdown { display: none !important; }Cheers!
ElliottHi danbono2!
We have the content slider which will slide a bunch of columns in and out of the view.
Other than that I would try finding a jCarousel WordPress plugin. There are lots of them out there.
Best regards,
ElliottFebruary 14, 2015 at 5:36 pm in reply to: Receiving all Enfold Support requests in my mailbox #396168Hey bandulet!
Click on Account Overview > Subscriptions and then hit the x icon for each of your subscriptions.
Best regards,
ElliottHi Jan!
It looks like your using a color section there correct? If so then add an ID to the color section and then add this to your custom CSS.
#yourID h3 { background: rgba(0,0,0,0.3) !important; padding: 20px !important; text-align: center !important; }If that’s not correct then send us a link to your page and we’ll take a look.
Best regards,
ElliottHey craig_corfield!
To get the shop you will need to install Woocommerce, http://www.woothemes.com/woocommerce/.
Consult their documentation, http://docs.woothemes.com/documentation/plugins/woocommerce/getting-started/, for how to use it.
And that’s all you need to do. Enfold will style the plugin so it looks like in our demo.
Best regards,
ElliottHey att-trading!
Check out the steps for “Moving Directories on your existing server”, http://codex.wordpress.org/Moving_WordPress.
Cheers!
ElliottHi maru_tmar!
I’m not sure I understand correctly but it sounds like your wanting to import the demo correct?
You can do so in Dashboard > Enfold > Demo Import. If you do not see the pages that it imports then try looking in your trash folder.
Regards,
ElliottHey!
You can use this CSS to decrease the spacing between 1/4 columns.
.av_one_fourth { margin-left: 2% !important; }Best regards,
ElliottHey kool!
Your getting a javascript error. Is Woocommerce updated? Try deactivating all of your other plugins to see what happens.
Also try activating just Enfold and not the child theme.
Cheers!
ElliottFebruary 13, 2015 at 10:15 pm in reply to: mega menu sub-menu doesn't show up in Opera and Chrome #396032Hi Susanne!
I checked your link but you were not using any mega menus. Can you activate them so we can take a look? Be sure to deactivate all plugins while testing.
Cheers!
ElliottHi Me.llamo!
Try adding a codeblock element to your page content and then add this inside.
@media only screen and (max-width: 767px) { .av_textblock_section p { padding-left: 0 !important; } }Regards,
ElliottFebruary 13, 2015 at 9:57 pm in reply to: Fatal error: Call to undefined method WC_Order (Woocommerce) #396027Hi pabloosorio!
Never seen that before. I’m not sure if it is an Enfold problem though. Does it do the same in the default WordPress theme?
I would try contacting Woocommerce support, https://support.woothemes.com/hc/en-us. They just did a big update so perhaps there were some bugs.
Best regards,
Elliott-
This reply was modified 10 years, 11 months ago by
Elliott.
Hi!
If it was only in Chrome then it could have been that you needed to update to Enfold 3.0.8. There was a fix in that update for backgrounds in Chrome.
Regards,
ElliottHey!
You’ve tried looking on the official Google Chrome browser as well? What device is that? Does it happen on other devices?
Best regards,
Elliott -
This reply was modified 10 years, 11 months ago by
-
AuthorPosts
