Forum Replies Created
-
AuthorPosts
-
March 19, 2014 at 9:02 am in reply to: Blog Posts Shortcode / Custom Taxonomy / Portfolio … CSS issue with indent #239940
Hey!
Please use this instead of the code you’re using:
.html_header_top.html_header_sticky #header { position: fixed; box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.5); }Best regards,
IsmaelHey BMart!
Please edit js > shortcodes.js, find this code on line 247:
mapTypeId:google.maps.MapTypeId.ROADMAP, center: new google.maps.LatLng(this.$data.marker[0].lat, this.$data.marker[0].long)Replace it with:
mapTypeId:google.maps.MapTypeId.ROADMAP, center: new google.maps.LatLng(this.$data.marker[0].lat, this.$data.marker[0].long), draggable: falseCheers!
IsmaelHey!
I’m sorry but I’m not sure what you’re trying to do. Please post a screenshot. Give us a link to the actual page with the embedded background divs.
Regards,
IsmaelHi!
Have you tried creating the new menu on a default theme? Does it save?
Cheers!
IsmaelHey!
Look for line of code:
<div class="entry-content" itemprop="text">Replace it with:
<div class="entry-content-wrapper clearfix">Cheers!
IsmaelHi!
Auto add pages means that every time you create a new page, it will be added automatically to the menu. The Theme Location specify where you want the menu to show. Enfold Main Menu means that the menu will be use on the header as main menu. Enfold Seondary Menu is the menu on top of the header along with the phone number and social icons. Enfold Footer Menu is quite obvious. If you’re having issues with menu limit, you can ask your host to increase max_input_vars to at least 5000. This will make sure that you can add at least 400 menu items.
Best regards,
IsmaelHi Ben!
Please give us a link to the actual website. Maybe, the fb box is set to a specific width cutting off the content.
Cheers!
IsmaelHi ggerber!
You can’t edit them via the Layout Builder. Those pages can only be modified manually via FTP or your cpanel.
Best regards,
IsmaelMarch 19, 2014 at 8:22 am in reply to: heading on one 'portfolio' page not replicating across other pages…. #239911Hey!
Thank you for using the theme. I hope you’re doing great.
I’m sorry but this is beyond the scope of support. Please ask the dev guy to help you. Anyway, I checked the website but I don’t see the orange menu?
Cheers!
IsmaelHi techgrayscale!
1.) You can use this on Quick CSS:
.av-inner-masonry.main_color,.avia_sortable_active .isotope { background-color: black; }2.) Use this:
.main_color .av-inner-masonry-content { background-color: red; color: blue; }Best regards,
IsmaelHi!
Yes, please post the login details here as a private reply. We would like to check it.
Regards,
IsmaelMarch 19, 2014 at 8:14 am in reply to: Set max number of columns for fullwidth masonry gallery #239900Hi techgrayscale!
Assuming the screen resolution of the monitor is no lower than 1900px, you can add this on Quick CSS or custom.css:
@media only screen and (min-width: 1800px) { .responsive.html_stretched .av-masonry-entry { width: 20.0%; } }Remove browser cache then reload the page a few times.
Regards,
IsmaelHey tlow87!
Please add this on your custom.css or Quick CSS:
.avia_transform .avia-icon-list .avia_start_animation .iconlist_icon{ -webkit-animation: avia_appear .1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Safari 4+ */ -moz-animation: avia_appear .1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Fx 5+ */ animation: avia_appear .1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* IE 10+ */ opacity: 1; -moz-transform:scale(1); -webkit-transform:scale(1); -ms-transform:scale(1); transform:scale(1); }You can change .1s sec if you want to make it slower.
Cheers!
IsmaelMarch 19, 2014 at 7:58 am in reply to: How to stop the logo in fixed header from becoming too small? #239890Hey!
You’re still using 2.5.4. Please download the latest version of the theme which is 2.6.2 on your themeforest account. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
Cheers!
IsmaelHi connect4consulting!
Please ask your host to fix the file permission issue or upload a fresh install of WordPress. See if that fix the issue.
Cheers!
IsmaelMarch 19, 2014 at 7:53 am in reply to: Anchor Text Still Not Working on Safari and iOS after 2.6.2 update #239885Hi esotEric!
Can you please give us a link to the website? Have you tried Dude’s fix here https://kriesi.at/support/topic/linking-to-anchor-menue-covering/#post-214325?
Best regards,
IsmaelHey!
Please edit config-templatebuilder > avia_shortcodes > gallery.php, find this code on line 212:
$output .= "<a class='avia-gallery-big fakeLightbox $imagelink $crop_big_preview_thumbnail $custom_link_class' href='".$link[0]."' data-onclick='1' title='".$description."' ><span class='avia-gallery-big-inner' $markup_url>"; $output .= " <img width='".$prev[1]."' height='".$prev[2]."' src='".$prev[0]."' title='".$title."' alt='".$alt."' />"; if($caption) $output .= " <span class='avia-gallery-caption'>{$caption}</span>"; $output .= "</span></a>";Replace it with:
$output .= "<a class='nolightbox avia-gallery-big fakeLightbox $imagelink $crop_big_preview_thumbnail $custom_link_class' title='".$description."' ><span class='avia-gallery-big-inner' $markup_url>"; $output .= " <img width='".$prev[1]."' height='".$prev[2]."' src='".$prev[0]."' title='".$title."' alt='".$alt."' />"; if($caption) $output .= " <span class='avia-gallery-caption'>{$caption}</span>"; $output .= "</span></a>";Remove browser cache then reload the page.
Best regards,
IsmaelHey!
If you want to install the layer slider as a stand alone plugin. You need to deactivate the default layer slider first. Add this on functions.php:
add_theme_support( ‘deactivate_layerslider’ );Install the plugin after.
Regards,
IsmaelHi!
Please use this on Quick CSS:
#top .widget_nav_menu ul ul li:before { content: ""; position: absolute; top: 5px; } #top .widget_nav_menu ul ul li a { padding: 6px 0px 6px 0px; } #top .widget_nav_menu ul li a { padding-left: 8px; } #top .widget_nav_menu ul ul li a { padding-left: 8px; } #top .widget_nav_menu ul ul li a, #top .widget_nav_menu ul li a { background: green; margin-bottom: 2px; }Best regards,
IsmaelHey!
1.) You can use this filter on functions.php to add google fonts on the heading and body font selector:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800'; return $fonts; }Change the “Source Sans Pro” with the google font that you want to use.
2.) Those are bold or strong fonts. You can change the font color and weight using this on Quick CSS:
.main_color .toggle_content strong, .main_color .toggle_content strong a, .main_color .tab_content strong, .main_color .tab_content strong a { color: #444; font-weight: normal; }3.) Please add this to fix the mega menu images on Firefox and IE:
#header .avia_mega_div img { max-width: 100%; }4.) Let me get back to you on that.
Cheers!
IsmaelMarch 19, 2014 at 7:16 am in reply to: Blog Posts Shortcode / Custom Taxonomy / Portfolio … CSS issue with indent #239865Hey recumbent!
Please add this on Quick CSS or custom.css:
.content .template-blog .type-portfolio .entry-content-wrapper { padding-left: 130px; }Cheers!
IsmaelHey tannermcleod!
Maybe, the checkout process is taking a lot of memory? Can you please give us a link to the website? I’m really not sure why it isn’t working. Let me ask Dude.
Regards,
IsmaelHi!
The content div has a top padding. You can decrease that using this on Quick CSS:
.content { padding-top: 0; }Cheers!
IsmaelHey!
Sorry for that, please switch to the English version in the dashboard then place this on Enfold (EN) > Styling > Quick CSS:
.big-preview.single-big { display: none !important; }Cheers!
IsmaelHey kalyanveda!
Please edit the homepage then switch to the Advance Layout Builder. Go to the Media Elements panel, insert the LayerSlider element. Select the slide that you want. Watch these videos to learn more about the theme: https://vimeo.com/channels/aviathemes
Refer to this link for some other stuff: http://kriesi.at/documentation/enfold
Cheers!
IsmaelHey!
Did you already input the meta description on SEO > Title & Meta > Home > Meta description field?
Best regards,
IsmaelHi!
Go to Enfold > Header > Header Layout > Header Title and Breadcrumbs, enable it.
Best regards,
Ismael-
This reply was modified 11 years, 10 months ago by
Ismael.
-
This reply was modified 11 years, 10 months ago by
-
AuthorPosts
