Forum Replies Created
-
AuthorPosts
-
May 18, 2015 at 10:06 am in reply to: Site looks different after updating theme to most recent version #445552
Hey 1lizcollins!
Thank you for using Enfold.
Add this in the Quick CSS field:
html.html_header_sidebar #wrap_all { background-color: transparent; }Cheers!
IsmaelHey wienerpresswerk!
Thank you for using Enfold.
The header layout is set to transparent. Set the Layout > Header visibility and transparency to “No Transparency”. Remove the color section after.
Best regards,
IsmaelHey!
Looks like you’re using an old version of the theme. Please update to version 3.1.5.
Cheers!
IsmaelHi ewingmh!
Thank you for using Enfold.
Use css media queries to adjust the height of the icon box on different screen sizes.
https://css-tricks.com/css-media-queries/
https://css-tricks.com/snippets/css/media-queries-for-standard-devices/A few examples of css media queries.
@media only screen and (min-width: 1140px) { } /* Smaller than standard 960 (devices and browsers) */ @media only screen and (max-width: 989px) { } /* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 989px) { } @media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ }Best regards,
IsmaelHey Philipp!
Thank you for using Enfold.
Use the color section element to create a full width container on top of the sidebar.
Cheers!
IsmaelHey!
Thank you for using Enfold.
1.) I”m sorry but it’s not possible to add a scroll function in the testimonial element. You can use the slider but it only show one testimonial item at a time.
2.) You can do something like this in the Quick CSS field:
.avia_transform .av_slideshow_full ul li:nth-child(1) .avia-caption-title { background: rgba(255,255,255,.5); } .avia_transform .av_slideshow_full ul li:nth-child(2) .avia-caption-title { background: rgba(0,6,255,.5); }The code should change the first and second slide caption background.
Cheers!
IsmaelHey!
Try to wrap the code inside a conditional function:
$avia_config[‘layout’][‘current’] = $avia_config[‘layout’][‘fullsize’]; $avia_config[‘layout’][‘current’][‘main’] = ‘fullsize';Use the is_page function. https://codex.wordpress.org/Function_Reference/is_page
Cheers!
IsmaelHi qeeqac!
Thank you for using Enfold.
Aside from the css modifications, did you edit or add any files? I checked the logo but I’m not sure why it doesn’t shrink automatically.
Cheers!
IsmaelHey!
Please refer to these links for a possible fix:
https://kriesi.at/support/topic/menu-creation-disappear-when-activating-enfold-v2/#post-433916
https://kriesi.at/support/topic/menu-creation-disappear-when-activating-enfold/#post-252435Cheers!
IsmaelHey jesperbruun!
Thank you for using Enfold.
This plugin is a bit outdated but it should fix the issue: https://wordpress.org/plugins/wordpress-https/
Regards,
IsmaelHi cpeluzzo!
Thank you for using Enfold.
Please update to version 3.1.5. The update should fix the issue.
Regards,
IsmaelHi ewingmh!
Thank you for using Enfold.
Do you want to increase the width of the footer container? Try this in the Quick CSS field:
.responsive #footer .container { max-width: 90%; }Best regards,
IsmaelMay 16, 2015 at 7:02 am in reply to: Portfolio Grid extremely slow to load with Ajax Preview #445244Hey!
Edit the masonry element then look for the Pagination settings. Set it to “Load More”.
Regards,
IsmaelHi Courtney!
Thank you for using Enfold.
Place the blog inside a color section. Edit the color section, apply a unique id to the Section ID field. Use “blog-section” for example. Add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($){ var pagination = $("#top .pagination a"), url = window.location.href, initial = url.indexOf('/page/') >= 1; if(pagination.length >= 1 && initial) { $('html,body').animate({ scrollTop: $('#blog-section').offset().top },2000); } }(jQuery)); </script> <?php }Best regards,
IsmaelMay 16, 2015 at 6:14 am in reply to: Edge to edge (fullwidth) on mobile / tablet: Image with caption in grid row #445240Hi!
Use this:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all #collections .no_margin .flex_cell_inner { width: 100%; max-width: 100%; }}In your custom css codes, I noticed that you are separating css media queries with the same width. For example:
@media only screen and (max-width: 767px) { .responsive #top .slideshow_caption .avia-caption-content { font-size: 15px !important; }}And this:
@media only screen and (max-width: 767px) { .responsive #top .slideshow_caption h2 { font-size: 32px !important; }}You can combine them in a single media query:
@media only screen and (max-width: 767px) { .responsive #top .slideshow_caption .avia-caption-content { font-size: 15px !important; } .responsive #top .slideshow_caption h2 { font-size: 32px !important; } #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial { padding: 0px 20px; } }CSS media queries usually go at the very bottom the css stylesheet.
Best regards,
IsmaelMay 16, 2015 at 6:06 am in reply to: How to do the "our menu" wine-glass-picture parallax scrolling? #445239Hey!
There is javascript error on the page. What is this code for?
<script type="text/javascript"> var $theColor = "#FFFFFF"; // alert($theColor); $(document).ready(function(){ fadeThemBorders($theColor); }); </script>Please remove it then test the parallax effect here: http://mikkels.com/test-parallax/
Regards,
IsmaelHey Danielkuipers!
Thank you for using Enfold.
Edit the blog posts element then set the Offset Number settings to prevent duplicated posts.
Regards,
IsmaelHey!
Do you have your own menu code or are you planning to use the theme’s default menu? There are a lot of ways of creating a roll over effect. Search google and you’ll find tons of example. You can use sprites, simple css link hover, background swap, image replacement etc.
Sprites hover effect: https://css-tricks.com/snippets/css/basic-link-rollover-as-css-sprite/
If you want to use the background swap, a simple code in a code block or text block element will do:
<div class="menu-item-1"></div>Add this in the Quick CSS field:
.menu-item-1 { width: 250px; height: 25px; background-image: url(original-image.jpg); } .menu-item-1:hover { background-image: url(hover-image.jpg); }Regards,
IsmaelMay 16, 2015 at 5:42 am in reply to: Change the default blog thumb icon with a default image. #445235Hi laptophobo!
Thank you for using Enfold.
Use this in the Quick CSS field:
.av-magazine-thumbnail a:before { content: ''; background: #000 (IMAGE URL HERE) no-repeat center center; width: 49px; height: 49px; position: absolute; top: 0; left: 0; z-index: -1; display: block; }Change the image url. Suggested image size is 49x49px.
Cheers!
IsmaelMay 16, 2015 at 5:34 am in reply to: SOLVED: PORTFOLIO CATEGORY THUMBS SPAWNING ERROR MESSAGE: "Nothing Found!" #445233May 16, 2015 at 5:34 am in reply to: Widget: Sidebar Menu (How to make it into drop down List or Accordion) #445232Hi!
In order for us to get a better idea of what you’re trying to, please provide a screenshot. Is the custom menu widget not enough? You can create multiple menus, one for each page.
Regards,
IsmaelHey!
Glad it’s working. Unfortunately, that is not possible since the map is not treated as a background.
Regards,
IsmaelHey robsdesigns!
Thank you for using Enfold.
Try to change every login credentials related to the site then override the theme and wp. Install wpsecurity plugins such as:
https://wordpress.org/plugins/bulletproof-security/
https://wordpress.org/plugins/wp-security-scan/Refer to these articles to learn more about wp security:
http://premium.wpmudev.org/blog/keeping-wordpress-secure-the-ultimate-guide/
http://codex.wordpress.org/Hardening_WordPressPlease contact your host as well regarding the issue. Don’t forget to follow the suggestions above.
Cheers!
IsmaelHey!
You didn’t add the code above. This is what I see when I checked the page:
a { color: #00a9e7 !important; font-weight: bold !important; }Regards,
IsmaelMay 16, 2015 at 5:20 am in reply to: Advanced Layer Slider and Partner logo element not working? #445228Hey!
The theme automatically creates a set of thumbnails for each image that you use. Please resize the logo images before uploading them to the media library so that the theme can create consistent thumbnail sizes. Resizing them directly in the WordPress media editor is not going to work.
Regards,
IsmaelHi!
I’m sorry but this kind of menu can’t be accomplish with css alone, it will require major modification on the theme. You can start with this:
li#menu-item-202 { overflow: visible !important; } li#menu-item-202 .avia_mega_div { opacity: 1 !important; display: block !important; }The li#menu-item-202 selector is the unique id of the mega menu item on my own installation. The menu id will be different in yours. Use firebug or google inspector to get the menu id. The code above will display the mega menu but you still have to adjust the main content because the mega menu container will cover it. Like I said, this is not something you can do with css alone. Please hire someone to help you with it. You can contact codeable: http://kriesi.at/contact/customization
Regards,
IsmaelHi!
This is the about page of the shop demo: http://pastebin.com/8th3a0Sj
And the home of the enrique fold demo: http://pastebin.com/vL4FxMRn
Regards,
IsmaelHi mmcgrat1!
Thank you for using Enfold.
Unfortunately, it’s not possible to filter the lightbox gallery in response to the category sort function. You may found a workaround but, I’m sorry to say, it’s not something we can provide here. Please hire a freelance developer or configure the magnific popup plugin. Refer to this link: http://dimsemenov.com/plugins/magnific-popup/
Regards,
IsmaelHi!
Is the advance layout builder not working? Please check the tab, toggles and table elements. If they are not working, let us know. If it is working then you can just ignore the errors. Those scripts are loaded only when you use these elements. Maybe, that’s why the plugin see it as an error or warning.
Cheers!
IsmaelHi donitafowler!
Thank you for using Enfold
What kind of popup are you looking for? Do you have any website with an example? Maybe these plugins will help:
https://wordpress.org/plugins/wordpress-popup/
https://wordpress.org/plugins/m-wp-popup/Regards,
Ismael -
AuthorPosts
