Forum Replies Created
-
AuthorPosts
-
Hey!
Thank you for the update.
Actually, the images are there. The problem is, something, maybe a plugin is adding a 1px width and height attribute to the images.
<img width="1" height="1" src="http://Philly-Sales.com/wp-content/uploads/2014/06/West-Philadelphia-Townhome.png" class="attachment-portfolio wp-post-image" alt="West Philadelphia Townhome">Please try to add this on Quick CSS or custom.css to fix the portfolio images on the home page:
.avia-content-slider .slide-image img { min-width: 100%; }Go to the wp-content/plugins folder then rename or remove all plugins folder then test the portfolio item’s featured image. The featured image is there but again, the 1px width and height attribute is being added.
http://philly-sales.com/wp-admin/post.php?post=4410&action=edit&message=1
Best regards,
IsmaelHey mikegrace78!
Thank you for using the theme.
Did you add the widget on the Shop Overview Page widget area? Please edit archives.php, find this code on line 78:
//get the sidebar $avia_config['currently_viewing'] = 'blog'; get_sidebar();Replace it with:
//get the sidebar $avia_config['currently_viewing'] = 'shop'; get_sidebar();Cheers!
IsmaelHey!
Thank you for the update.
Please remove the br tag then use this on Quick CSS or custom.css to decrease the padding between menu items:
.av-main-nav > li > a { padding: 0 7px; }Adjust the second value on the padding property if necessary.
Cheers!
IsmaelJune 11, 2014 at 4:00 am in reply to: How to add vertical border on left and right of main content on each page #277346Hey Jane!
Thank you for using the theme.
I don’t think that is possible with css only so you might need to modify the theme files. Please hire a freelance developer to add the background for you. You can try this though:
#main div.container:before { content: ''; background: red; height: 9999px; width: 1px; display: block; position: absolute; left: -10px; z-index: 9999; } #main div.container:after { content: ''; background: red; height: 9999px; width: 1px; display: block; position: absolute; right: -10px; z-index: 9999; visibility: visible; }Adjust the width then replace the value of the background property.
Best regards,
IsmaelHey Kevin!
Thank you for visiting the support forum.
Go to Appearance > Menus panel then click the Screen Options. Look for the Show advanced menu properties, enable the Link Target.
Regards,
IsmaelHey dalboslampen!
Thank you for the kind words and for using the theme!
Please add this on Quick CSS or custom.css:
.html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 140px; } .header_color.header-scrolled .header_bg { background-color: transparent !important; } .header-scrolled #header_main { border-bottom: none; }Cheers!
IsmaelJune 11, 2014 at 3:30 am in reply to: Is it possible to have different style for the Contact Form in different pages? #277338Hi afarahani!
Thank you for using the theme!
1.) You can add this on Quick CSS or custom.css to change the label of the contact form to black:
.avia_ajax_form label { color: black !important; }2.) Yes, that is possible but it will require the core modification of the theme. Edit framework > php > class-form-generator.php, we’ll try to edit the text function inside avia_form class. Look for this code on line 284:
$form_el = ' <input name="'.$id.'" class="text_input '.$element_class.'" type="'.$type.'" id="'.$id.'" value="'.$value.'"/>'; $label = '<label for="'.$id.'">'.$element['label'].$required.'</label>';Replace it with:
$form_el = ' <input placeholder="'.$element['label'].'" name="'.$id.'" class="text_input '.$element_class.'" type="'.$type.'" id="'.$id.'" value="'.$value.'"/>'; //$label = '<label for="'.$id.'">'.$element['label'].$required.'</label>';We added the place holder attribute inside the input tag then hide the actual label variable. Do the same thing with the textarea function.
Regards,
IsmaelHi afarahani!
Thank you for using the theme.
Are you going to sync it on your facebook account? You can try to use social button or sharing plugins like the following:
https://wordpress.org/plugins/socializer/
https://wordpress.org/plugins/simple-social-buttons/
http://wordpress.org/plugins/addthis/Best regards,
IsmaelHey!
Thank you for the update.
You set the Slide Delay to 30000, that is 30 seconds. Meaning the slider will only start after 30 seconds. We set it back to 3000 ms. Another problem is, the background file size is quite huge for its dimension. Please resave the background image ( http://cfe.433.myftpupload.com/wp-content/uploads/2014/05/new.back_.5.211.png ) as JPG format then set the quality to 10 if you’re using photoshop. Upload it again.
Cheers!
IsmaelJune 10, 2014 at 6:03 am in reply to: Resize image containers for product grid using WooCommerce #276851Hi Mudfish488!
Thank you for using the theme.
The code on config.php file controls the size of the thumbnail and you’re correct about the image inheriting the size of its container. You can add this on Quick CSS or custom.css if you want to specify the actual width of the image inside the product grid, default width is 100%:
#top .thumbnail_container img { margin: 0 auto; width: 240px; position: relative; }Regarding the search results, how did it get there? Add this css snippet to hide it:
.woocommerce-page div.page-description { display: none; }Cheers!
IsmaelHey!
Glad it worked.
I may not be reviewing the the thread well but I don’t see any hint of the website url even on the screenshots. Mind posting the website url here so that we can inspect the gallery on Firefox? On what OS are you testing this and what version of Firefox?
Cheers!
IsmaelHey!
Not really sure why you’re having that issue. I checked the test page again with the audio shortcode using Firefox 29.0 Windows 8 and I was able to edit the page without issues. Looks like the problem is unique with your installation. Do you have any browser extension? They might be in conflict with the theme. http://mara-events.de/cms/wp-admin/post.php?post=86&action=edit&message=1
Regards,
IsmaelHi!
Thank you for the access.
The username and password are invalid. Please check. Regarding the bwp minify, use the default settings then exclude the dynamic and layout css files with this on functions.php:
add_filter('bwp_minify_style_ignore', 'exclude_my_css'); function exclude_my_css($excluded) { $excluded = array('avia-layout', 'avia-dynamic'); return $excluded; }Best regards,
IsmaelHey atlantio!
Thank you for using the theme!
1.) First, try this on Quick CSS or custom.css to resize the heading tags:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top #wrap_all .header_color h1, #top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1, #top #wrap_all .footer_color h1, #top #wrap_all .socket_color h1 { font-size: 3em; } #top #wrap_all .header_color h2, #top #wrap_all .main_color h2, #top #wrap_all .alternate_color h2, #top #wrap_all .footer_color h2, #top #wrap_all .socket_color h2 { font-size: 2em; } }2.) Do you mind providing a screenshot of this issue? It looks fine on Chrome Windows 8.
3.) Unfortunately, those features has been remove on the Maps element within the theme. You might need to use a more complex google maps plugin for this particular issue. https://wordpress.org/plugins/wp-google-maps/
4.) Use this on Quick CSS or custom.css:
.avia-tooltip { display: none !important; opacity: 0 !important; }Best regards,
IsmaelHi!
Thank you for the update.
I checked the test page: http://www.gaderinge.com/nature-free-stock-images/ and the gallery have 5 columns. Is this fixed?
Regards,
IsmaelHi!
The media queries on the Quick CSS are not closed properly. Some of the layouts on smaller screens might break because of this. I added the css codes for the main menu at the very bottom of Quick CSS field.
Regards,
IsmaelHey!
Thank you for the update.
I checked the test page and the body font is set to Helvetica and Heading font to Coda. Please remove browser cache or test it using another browser. If possible, test it on another computer.
Best regards,
IsmaelHi islandjoe1!
Thank you for using the theme.
The thumbnail size of the single product page featured image is controlled on config-woocommerce > config.php. Find this code on line 16:
$avia_config['imgSize']['shop_single'] = array('width'=>450, 'height'=>999, 'crop' => false);Change the width and height attribute then regenerate the thumbnails or upload it again. Note that it is inside the four units container. The featured image will inherit the size of the container.
Cheers!
IsmaelHi!
Thank you for the access.
There’s a problem with your installation. The enfold theme is inside the wp root directory. Maybe the index.php has been overwritten with the enfold theme files. Please remove the enfold theme files on the root directory then upload the wordpress files again.
Cheers!
IsmaelHey ben8010!
Thank you for visiting the support forum!
Do you mind providing a screenshot of what you’re trying to do? Note that you can move the menu below the logo on Enfold > Header Layout > Header Layout > Menu and Logo Position. Select the logo position with the Menu below options.
Cheers!
IsmaelJune 10, 2014 at 3:26 am in reply to: Fly-out menu formatting, transparency and screen size. #276800June 10, 2014 at 3:24 am in reply to: Ajax Portfolio Contact form and accordion not working! #276797Hey!
Thank you for the update.
Please remove this code from Quick CSS or custom.css:
.avia_ajax_form label { color: white !important; }This force the ajax form label to be white. I tested the portfolio page and insert the contact form, I got no issue whatsoever.
http://gator3130.hostgator.com/~elites/wp-admin/post.php?post=84&action=edit&message=1Best regards,
IsmaelHey nokostudio!
Thank you for using the theme!
I created a test page on Firefox Windows 8 but the text block retains the styling and layout. I updated it many times. I got logged out automatically when editing the Test Page though but it happened only once, not sure why. Please try deactivating the plugins then test it again. This is the test page: http://sustain2013.wpengine.com/wp-admin/post.php?post=4162&action=edit&message=1 (hosted on WPengine)
Best regards,
IsmaelHi!
Glad it is working now. :)
Let us know if you still experience the issue in the fuure. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
Best regards,
IsmaelHi MaddGIJoe!
Thank you for using the theme!
We would like to see the actual website. Please post it here. Make sure that you’re running Enfold 2.8.1 and the latest version of WordPress.
Cheers!
IsmaelHi!
Thank you for the update.
Please avoid creating duplicated posts. If I am not mistaken, this issue is the same with the thread you have here: https://kriesi.at/support/topic/ipad-formatting-issue/
Anyway, regarding the mobile menu, please go to Enfold > Mobile Menu > Header Mobile Menu activation. Choose the second option. After that, pease add this on Quick CSS or custom.css to center align the logo on iPad portrait view:
@media only screen and (max-width: 989px) and (min-width: 768px) { .responsive .mobile_slide_out .logo { left: 50%; -webkit-transform: translate(-50%, 0); -ms-transform: translate(-50%, 0); -moz-transform: translate(-50%, 0); transform: translate(-50%, 0); } #advanced_menu_toggle { right: 0; top: 40%; } }Remove this line on our first suggestion:
.responsive .mobile_slide_out .logo { left: 40%; }Cheers!
IsmaelHey!
@coinmaster: Looks like the OP hasn’t updated the theme yet but we really recommend that you keep the theme up to date even if you’re not having this issues. Please download the latest version 2.8.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/Regards,
IsmaelHi!
@Frank: Like the floors depicted on the picture, the website is clean and shiny. Good job! :)
@mrshaffly: I think the business is going well. Nice websites. Thank you for using Enfold!
@ianstudio: The custom social icon section on top looks awesome. Great work.Best regards,
IsmaelHey!
Nice catch! Honestly, we haven’t tested most of these plugins but you can try the following:
https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/
https://wordpress.org/plugins/bulletproof-security/
https://wordpress.org/plugins/search.php?q=wordpress+securityCheers!
Ismael -
AuthorPosts
