Forum Replies Created
-
AuthorPosts
-
Hey!
We added the following code in the Quick CSS field and it’s working now.
.main_color h3.av-special-heading-tag { color: inherit; }Best regards,
IsmaelHey!
Glad it worked. Unfortunately, you have to modify the file every time you update the theme. Please create a change log of the modification or bookmark this thread in case you update the theme.
Cheers!
IsmaelHey!
Try to replace the “ava_main_header” with the “ava_inside_main_menu” filter. You can check the includes > helper-main-menu.php file for more info.
Cheers!
IsmaelHey!
The + selector will target the element beside the first selector. Try to add the first-child pseudo element. http://www.w3schools.com/cssref/sel_firstchild.asp
Cheers!
IsmaelHi!
You need to apply categories or tags to your posts then edit the magazine element, enable the “Display Tabs for each category selected above?”. Select the categories.
Cheers!
IsmaelHi!
Add this in the functions.php file:
add_filter( 'ava_main_header', 'avia_append_search_nav_mod', 10, 1); function avia_append_search_nav_mod( $items ) { global $avia_config; ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $items = '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"> <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </li>'; echo $items; }This will put the search icon inside the main header. Use the Quick CSS field to adjust the position of the icon. Unfortunately, you cannot append the search icon directly in the social icon container.
Regards,
IsmaelOctober 26, 2015 at 10:34 am in reply to: Drop down background-color is different in Internet Explorer and Chrome #524770Hey!
I checked the site on IE8 and the option background is already blue, I’m pretty sure that the code will work on IE11. Please try to remove browser cache then hard refresh the page. If not, please post the login details here so that we can inspect it.
Regards,
IsmaelHi!
Also, it doesn’t show because the post inside the categories are protected. This one for example:
http://outilsducoach.com/vos-valeurs-propres/
Check the status here: http://outilsducoach.com/wp-admin/admin.php?page=WishListMember&wl=managecontent
Best regards,
IsmaelHey!
I just flushed the permalink settings and the articles are now displaying. Check it here: http://outilsducoach.com/fiches-travail/
EDIT: I can see the articles if I logged in to the site. Did you set the articles or archive page to be visible only for logged in members? I’m not familiar with the wish member plugin settings but are there any settings where you can prevent users from accessing a specific page? Please contact the plugin author for more info.
Regards,
IsmaelHi!
This is how Kriesi implemented the section height calculation, so it’s not a bug. Of course you have your own preference, so it seems like it’s not working the way you expect it to. If you want to modify the height of the preceding section, edit the js > shortcodes.js file, look for “$.fn.avia_browser_height” function. Adjust this line:
subtract.each(function(){ wh100_mod -= this.offsetHeight - 1; });..replace it with:
subtract.each(function(){ wh100 -= this.offsetHeight - 1; wh100_mod -= this.offsetHeight - 1; });Remove browser cache then reload the page.
Best regards,
IsmaelHey Munford!
Thank you for using Enfold.
You forgot to close the strong tag here:
<strong>CORD. VOLCANICA<strong>Cheers!
IsmaelHi!
Please replace the code with this:
ul.children > li > a:after { content: ''; width: 70%; height: 1px; background: #000000; display: block; margin: 0 auto; }Best regards,
IsmaelHey!
Why do you need to do this? Can you please provide a screenshot of the layout that you’re trying to achieve? If you created a template called page-ID.php file, make sure that the page is not using the advance layout builder. Switch back to the Default Editor then update the page. For testing purposes, edit the page then switch to the default editor, update. Create a duplicate of the page.php file then rename it to page-ID.php file (make sure that the page id is correct). Remove every code in the page-ID.php file then check the page. You should see a blank page. If it is blank then you know that the template is working.
Cheers!
IsmaelOctober 26, 2015 at 8:55 am in reply to: Coloured background section (text area or colour section) #524716Hey!
Where can we find the page? The previous page has been removed: EDITED
Looks like you managed to do it with this:
.page-id-28 .post-entry, .page-id-36 .post-entry, .page-id-49 .post-entry, .page-id-60 .post-entry, .page-id-71 .post-entry, .page-id-234 .post-entry, .page-id-241 .post-entry, .page-id-74 .post-entry { background-color: rgba(255,255,255,.95); padding: 20px; }Regards,
IsmaelHey!
@Armbarnation: I’m sorry but we can’t reproduce the issues that you are describing on your previous posts. Please check the browser settings, make sure that javascript is enabled.However, as I stated in my last message none of the Parallax Elements for the backgrounds are working in Firefox or Chrome, and again you did not address those concerns in your reply. Everything works perfect in Safari.
The parallax effect is working on firefox and chrome. If you inspect the parallax container, you’ll see the inline styling which is basically responsible for the parallax effect:
<div class="av-parallax avia-full-stretch active-parallax enabled-parallax " data-avia-parallax-ratio="0.3" style="top: auto; transform: translate3d(0px, 233px, 0px); height: 1034px; background-image: url(https://sandel.lifeofryan.ca/wp-content/uploads/2015/10/metro-innovation-video-2-1500x844.jpg); background-attachment: scroll; background-position: 50% 0%; background-repeat: no-repeat;"></div>You can also see, that the 3 buttons that show prominently in Safari, do not in Firefox or Chrome, plus the hotspot that pops up the information for the button does not work in Safari or Chrome.
This is how the button looks on Firefox and Chrome:
Firefox:

Chrome:

@Sarah-B: Please open a new thread. We’ll tackle your issues there. Thank you.Best regards,
IsmaelHey!
I checked the page (http://ea.wordpress.pratbcn.com/clients/) and the special headings (U.S. Department of the Treasury, National Institutes of Health etc) are white (#ffffff). Isn’t that what you want?I reviewed the previous post and I found out that you really want to apply a different color other than white. Edit the special heading element then adjust the color. If it’s not working, please post the login details here.
EDIT: I created a test page here: http://ea.wordpress.pratbcn.com/test/
Regards,
IsmaelHi gearouthere!
Thank you for using Enfold.
Set the width to 100% then modify the product summary:
.single-product-main-image { width: 100%; } .single-product-summary { overflow: visible; }Since the sidebar is inside the image container, it will go below the main image, above the summary.
Best regards,
IsmaelHey!
What is the code that you use? Please post it on pastebin.com.
Also, I am still seeing slightly larger space between columns, how can I reduce that so on mobile views, footer looks good?
It’s because of the separator that you added before the widgets. Why did you add a separator?
Best regards,
IsmaelOctober 26, 2015 at 7:40 am in reply to: Problem with special characters. Portuguese language. #524677Hi HecAugusto!
Thank you for using Enfold.
Site looks OK when I checked it. Did you add the function?
function add_subset_func($fontlist) { $fontlist .= "&subset=latin,latin-ext"; return $fontlist; } add_filter('avf_google_fontlist', 'add_subset_func');Regards,
IsmaelOctober 26, 2015 at 7:30 am in reply to: icon signs changing from bizarre signs to desired ones during visit #524670Hi!
If you search the forum, you’ll find that this is actually a common issue and the cors-solution fixed it in most cases. The page in the http://www.lesire-partners.com/ is cached. Please disable the cache plugin temporarily then check it again. Where is the .htaccess file located? Is it in the wp root directory?
Best regards,
IsmaelHi!
Please increase the memory limit to at least 256MB. Refer to this link: https://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/
As stated on our previous post, this error isn’t something cause by the theme. Please contact your hosting provider.
Cheers!
IsmaelHey!
@FindlyTalent: The footer column works OK if I change the footer columns number in the Footer Settings panel. If you decrease the number of the columns, the widgets of the last footer columns will be assigned temporarily to the inactive section and if you increase the footer column number, the widgets will go back to their assigned widget areas. Did you upgrade WP from a version older than 4.2? The register_sidebar function on version 4.2 requires an id so if you upgrade from version older than 4.2, you’ll encounter that issue: https://codex.wordpress.org/Function_Reference/register_sidebar
@Jakerevans: Did you upgrade WP from a version older than 4.2? Unfortunately, we won’t be able to fix or re-assign the custom widgets automatically, we’ve tried via database but failed. This is because of the updated register_sidebar function on version 4.2. You have to re-assign the widget manually to their respective widget areas. We are very sorry for the inconvenience.Cheers!
IsmaelHi!
I reselect the categories in the Portfolio Grid element and it works fine: http://www.radiospin.org/grtest/portfolio/
Regards,
IsmaelOctober 26, 2015 at 6:59 am in reply to: Fullscreen Slider Element with Xpx or X% minus in height to show content below #524662Hey!
Instead of reducing the height, try to enable the “Display a scroll down arrow” option. I think that’s enough to inform users that there are more content below the slider. If you really want to decrease the height of the slider, edit js > shortcodes.js, look for this code around line 2213:
wh100 = win.height(),.. replace it with:
wh100 = win.height() - 100,Best regards,
IsmaelHey!
Please try this instead:
div .products .product .price a { display: inline !important; }Best regards,
IsmaelHi!
Edit the layer then go the Attributes panel. Add a unique class or id to that layer. Use “underline_layer” in the class field for example then use this in the Quick CSS field:
.underline_layer { text-decoration: underline; }Cheers!
IsmaelHi Michael!
Thank you for using Enfold.
Make sure that you sync the language files after translation then go to the wp-content/themes/enfold/lang folder. Look for the new language files inside the informal folder then override the original language files. If it doesn’t work, please post the login details here so that we can inspect it.
Regards,
IsmaelHey!
Thank you for using Enfold.
Please try this in the Quick CSS field:
.avia_desktop .av-hover-overlay-active .av-masonry-image-container { opacity: 1; } .avia_desktop .av-hover-overlay-active .av-masonry-entry:hover .av-masonry-image-container { opacity: 0.7; }Best regards,
IsmaelHi!
It must have been added when I inspect the site. Anyway, please try this instead:
@media only screen and (max-width: 989px) { .responsive.html_mobile_menu_tablet .main_menu .avia-menu, .responsive.html_mobile_menu_tablet #header_main .social_bookmarks, .responsive.html_mobile_menu_tablet #header_main_alternate { display: block; } .av-main-nav > li { line-height: 30px; display: none; } .av-main-nav > #menu-item-search { position: absolute; display: block; top: 0px; right: 10% } } @media only screen and (max-width: 786px) { .av-main-nav > #menu-item-search { top: -88px; } }Remove browser cache then reload the page.
Best regards,
Ismael -
AuthorPosts
