Forum Replies Created
-
AuthorPosts
-
Hey mgansevoort!
You can find the images around line 100 in the /enfold/functions.php file. For the blog entries your probably wanting line 127 – 128.
You can use this plugin, http://wordpress.org/extend/plugins/regenerate-thumbnails/, to regenerate the thumbnails after you change the size.
Cheers!
ElliottHi comprompt!
You have this CSS on the page.
.goog-te-gadget { font-size: 0px !important; }
Which is hiding the text. If your not sure where it’s coming from then try adding this to your custom CSS to overwrite it.
#top .goog-te-gadget { font-size: 10px !important; }
Best regards,
ElliottNovember 30, 2015 at 5:18 pm in reply to: Issue with hidding homepage menu and looping portfolio arrows #544621Hey super-webmaster!
1. Add this to your custom CSS.
#advanced_menu_toggle { display: none; }
And then in the page you want it to display on add this to a codeblock element.
<style type = "text/css"> @media screen and (max-width: 767px) { #advanced_menu_toggle { display: block !important; } } </style>
2. That would take a lot of time and code and would have to be considered custom work. It would be best to hire a freelancer to help you out with that customization.
Regards,
ElliottHi toekook!
I’m not sure which button it’s supposed to be. Take a screenshot and highlight what is going on so we can get a better idea.
Also, it would be a good idea to contact the plugin author as well.
Best regards,
ElliottHi omardualtime!
Add this to a codeblock element in the post content.
<style type = "text/css"> .avia-content-slider-inner .post-entry-836 { display: none !important; } </style>
Best regards,
ElliottHi raisonbrands!
Can you send us a link to your page so we can take a look? You can set your reply as private if you wish.
Cheers!
ElliottHi!
Well, if you want them all to be the same height then you can set a minimum height to them with the CSS I posted above. It looks like the last column is three lines though so I would consider rephrasing it so it’s just two lines.
Regards,
ElliottHi fchieli!
It appears to be from your google plus comments plugin.
Cheers!
ElliottHey!
Probably this line.
add_action('wp_footer', 'add_custom_script');
I don’t think we have any function named “add_custom_script” and you don’t appear to have any function defined by that name.
Cheers!
ElliottNovember 28, 2015 at 7:33 pm in reply to: Mobile menu for iPad landscape and iPad mini landscape #543980Hi!
Can you send us a link to your page so we can take a look? You can set your reply as private if you wish.
Best regards,
Elliott-
This reply was modified 9 years, 7 months ago by
Elliott.
Hi!
Try adding this to your custom CSS.
.thumbnail_container:hover > img:nth-child(2) { opacity: 0 !important; }
Cheers!
ElliottHey!
Is it only that page? Do other pages save fine? Send us a WordPress login and we’ll take a look.
Regards,
ElliottHi!
Same problem. The HTML is fine it’s just the list items are not displaying their bullets. Probably from some custom CSS your using though I could not pinpoint where.
You can target the ones in that area with this.
.summary li { }
Cheers!
ElliottHi olga76!
I see the posts on your homepage but I’m not sure I understand what the problem is. Can you take a screenshot and highlight what your trying to do?
Regards,
ElliottNovember 28, 2015 at 5:53 pm in reply to: enfold + woocommerce in shop page, display 4 products per page #543964Hey pressian!
Navigate to Dashboard > Woocommerce > Settings > Products > Display and you can change that at the bottom.
Regards,
ElliottHi RRaker!
Remove the contents of the color section and keep checking the frontend to see which element is causing the issue. When you find it look over your code to make sure everything is closed properly.
<div></div> <strong></strong> etc etc
Regards,
ElliottNovember 28, 2015 at 5:46 pm in reply to: Change background position and font size in mobile #543961Hi grafikero!
It’s the first color section in the link you provided correct? Add this to your custom CSS.
@media screen and (max-width: 767px) { #av_section_1 { background-position: center left !important; } }
Cheers!
ElliottHi adlinedesign!
Edit the template and add this inside.
<style type = "text/css"> .title_container { background-color: #3F0 !important; } </style>
Regards,
ElliottNovember 28, 2015 at 5:35 pm in reply to: Popup (javascrip ?) error in combination with Woocommerce Bookings #543956Hey jeeteecorp!
It seems to be working fine on my end. I was able to add the product to the cart. Perhaps your not selecting both a beginning and end date? It would be best to contact the extension author as it doesn’t seem to have anything to do with Enfold.
Regards,
Elliott-
This reply was modified 9 years, 7 months ago by
Elliott.
Hi MMA_Impact!
If your using the layout builder then you need to drag the social share buttons element to your page content to display them.
If you want them displayed automatically then it would be best to use the default editor for your posts.
Best regards,
ElliottHi diego!
Perhaps you need to use the !important override to make sure it’s not getting overwritten.
.yourClass { color: red !important; font-size: 12px !important; }
Cheers!
Elliott-
This reply was modified 9 years, 7 months ago by
Elliott.
Hi Antonio!
You have quite a bit of tables being used on that page. Take a screenshot and highlight the exact area your referring to.
I think the CSS your wanting is this though.
.pricing-table li { min-height: 90px !important; }
Best regards,
Elliott-
This reply was modified 9 years, 7 months ago by
Elliott.
November 28, 2015 at 5:25 pm in reply to: WP Admin loads a blank page after saving\publishing #543949Hey Tal!
Does it do the same in the default theme? Try deactivating all of your plugins and make sure your using the latest version of Enfold, 3.4.4.
Also try turning on WordPress debugging and check your server error logs for any useful information.
Regards,
ElliottHey Courtney!
Add this to your custom CSS.
.slide-meta div { display: none; }
Cheers!
ElliottNovember 27, 2015 at 10:40 pm in reply to: Mobile menu for iPad landscape and iPad mini landscape #543876Hey!
Add this to your custom CSS.
@media screen and (max-width: 1200px) { #advanced_menu_toggle { display: block !important; } nav.main_menu { display: none !important; } }
And adjust the 1200px value to however wide your tablet screen is in landscape.
Best regards,
ElliottHi!
Well it seems to be displaying fine. Make sure to switch to the text editor when editing the HTML.
If you want to display dots in a list format then add this to your custom CSS.
.panel li { list-style-type: square !important; }
Best regards,
ElliottNovember 27, 2015 at 10:27 pm in reply to: Add a little color (opacity?) to transparent header #543867Hey Andy!
Add this to your custom CSS.
.header_bg { background: rgba(0,0,0,0.4) !important; opacity: 1 !important; }
Regards,
ElliottHey webstrats!
It’s only that page? Try creating a new page and add your content in piece by piece to see which element is causing the problem.
Be sure to deactivate all plugins while testing.
Best regards,
ElliottHi druzes!
Can you send us a link to your page so we can take a look? You can set you reply as private if you wish.
Cheers!
Elliott -
This reply was modified 9 years, 7 months ago by
-
AuthorPosts