Forum Replies Created
-
AuthorPosts
-
Hi erikkIsrael!
Can you please post a screenshot of what you’re trying to do? A link to the actual page will help.
Regards,
IsmaelHi erikkIsrael!
Add this on Quick CSS:
#header { background-color: #4d3318; } .header_bg { opacity: 1; filter: alpha(opacity=100); }Cheers!
IsmaelHey redpupmedia!
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' href='".$link[0]."' data-onclick='1' title='".$description."' ><span class='avia-gallery-big-inner' $markup_url>"; $output .= " <img src='".$prev[0]."' title='".$title."' alt='".$alt."' />"; if($caption) $output .= " <span class='avia-gallery-caption'>{$caption}</span>"; $output .= "</span></a>";Replace it with:
$output .= " <img src='".$prev[0]."' title='".$title."' alt='".$alt."' />"; if($caption) $output .= " <span class='avia-gallery-caption'>{$caption}</span>";And this code on line 216:
$thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' $markup_url><img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";Replace it with:
$thumbs .= " <img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' />";Add this on Quick CSS to retain the cursor. Remove browser cache then reload the page.
.avia-gallery { cursor: pointer; }Best regards,
IsmaelHi!
No, you don’t have to use php. Just follow the instruction on the link that I gave you to open a page or an inline content using lightbox. This can be done using the Text Block. This is an example.
Open this thread using lightbox
This is the actual code. I added the ?iframe=true at the end of the url.
<a href="https://kriesi.at/support/topic/pop-up-plugin?iframe=true" rel="prettyPhoto">Open this thread using lightbox</a>Cheers!
IsmaelHi mediumstudio!
Please try to insert the Text Block inside a column layout. You can also use the Image element under Media Elements panel, place inside a column layout. The images’ width are set to 100%, you can add a unique css selector to the image then specify the width and height using Quick CSS.
Cheers!
IsmaelHey lkane!
From what version did you update the theme? Please try to recreate the icon boxes from scratch.
Cheers!
IsmaelHi!
You can add this on Quick CSS or custom.css:
.pp_expand { display: none !important; }Regards,
IsmaelHi mrtechnique!
You can use this filter on functions.php to add google fonts:
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; }Replace Source Sans Pro with the font that you want. Which headings are you trying to change? You can use this for the body font:
body, body p { font-size: 15px; }Cheers!
IsmaelHey!
Please add this at the very bottom of functions.php:
add_action('after_setup_theme','avia_remove_portfolio_breadcrumb'); function avia_remove_portfolio_breadcrumb(){ remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb'); }Cheers!
IsmaelHi!
You can use the Blog Posts element instead of the Portfolio Grid. Add this on functions.php to sort the portfolio items.
add_filter('avia_post_grid_query', 'avf_custom_post_grid_query'); function avf_custom_post_grid_query ( $query ) { $query['orderby'] = 'rand'; return $query; }Cheers!
IsmaelHey!
Please edit the page. Inspect the shortcode then remove the line break tag (<br>) below the first 1/3 column. Use this on Quick CSS to remove the post meta infos:
.post-meta-infos { display: none; }Best regards,
IsmaelHey Jorge!
You can something like this on Quick CSS:
.isotope_activated .isotope-item { margin-left: 0; padding-right: 10px; }Regards,
IsmaelHey FiestaInsurance!
Go to Enfold > Header > Responsive Header Main Menu > choose the “Slide out Menu”.
Cheers!
IsmaelHey!
Yes, you can add a Text Widget on widget area then leave it blank.
Cheers!
IsmaelJanuary 22, 2014 at 2:10 pm in reply to: I want to reduce white space between contents in the mainpage #213308Hey!
You can adjust the top margin of the columns using this:
body .column-top-margin { margin-top: 10px; }Best regards,
IsmaelHi epresley!
You can use custom fields in different ways and I don’t think it will be added on the theme anytime sooner. Maybe you can try these plugins:
http://wordpress.org/plugins/advanced-custom-fields/
http://wordpress.org/plugins/custom-field-suite/
Regards,
IsmaelHey CelebrationEvents!
Is this still happening? I don’t see the error and the masonry is working when I checked the link.
Best regards,
IsmaelHi jta!
I’m afraid you can only use the fontello icons with the theme. For example, if you want to add a slideshare social icon, download a fontello icon and install the icon using the font manager. You can add this filter on functions.php.
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_icon($icons) { $icons['slideshare'] = array( 'font' =>'fontello', 'icon' => 'ue801'); return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); function avia_add_custom_social_icon($icons) { $icons['Slideshare'] = 'slideshare'; return $icons; }Go to to Enfold > Header and add the Slideshare icon to the social icons.
Best regards,
IsmaelHey!
Please use this instead:
@media only screen and (max-width: 767px) { .responsive #header .social_bookmarks { position: absolute; left: -60px; width: 50%; } .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul { width: 75%; position: relative; right: -70px; } #menu-item-6214 a { position: relative !important; top: 0px !important; } }The header should look like this after:
Best regards,
IsmaelJanuary 22, 2014 at 12:00 pm in reply to: All portfolio items in a given category on one page #213258Hey!
You need to create one portfolio item for each slide if you want to them to have their own respective page.
Regards,
IsmaelHey!
You can use this:
#av_section_1 .av_textblock_section { background: white; padding: 20px; }Change the background to any color you want.
You can use this on the second page:
.flex_column.av_two_third.first.avia-builder-el-7.el_after_av_one_third.column-top-margin { background: rgba(255,255,255,.8); padding: 20px; }Cheers!
IsmaelHi cavanaughb!
Please give us a link to the page with the 2/3 column. We can move it using CSS but we need to inspect the page. You can add something like this on Quick CSS:
.flex_column.av_two_third { margin-left: 20%; }Cheers!
IsmaelJanuary 22, 2014 at 11:48 am in reply to: Partner logos not displaying with consistent size on iphone #213251Hey NanaKuo!
You can add this on Quick CSS to adjust the width of the logo on mobile devices.
@media only screen and (max-width: 767px) { .responsive #top .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top .avia-content-slider-odd .slide-entry.slide-parity-even { margin: 0; clear: both; width: 100%; } .responsive #top .avia-smallarrow-slider .flex_column { margin: 0px; width: 100%; } }Cheers!
IsmaelHi!
Please try to insert each set of icons and text on a column layout. Maybe 3 1/3 column layout aligned side by side.
Regards,
IsmaelHi!
Create a custom link on Appearance > Menus, add the url then label it “Request a Demo”. Inspect the menu item then get the menu id. It will something like “#menu-item-2311”. Yours might be different. Add this on Quick CSS:
.sub_menu #menu-item-2311 a { position: relative; width: 100px; background: blue !important; display: block; text-align: center; top: -11px; left: -5px; }Please give us a link to the website after you added the custom link.
Regards,
IsmaelJanuary 22, 2014 at 11:31 am in reply to: Portfolio ajax slider image to sit flush at top of screen #213242Hi simmer!
That will require a bit of modification and is beyond the scope of our support. Please hire a freelance developer to modify the ajax portfolio function. You can visit this site.
Best regards,
IsmaelHey!
Ok. My bad! You really need to edit base.css then find the code I posted above. Change the icon code.
Best regards,
IsmaelHi!
You can increase the wordpress php memory limit. Please refer to this link. Increase it to at least 128M.
Best regards,
IsmaelJanuary 22, 2014 at 11:20 am in reply to: Facebook and Twitter widget on Homepage of http://kriesi.at/ #213238Hi!
Unfortunately, you can’t do that but you can increase the delay for the layer on transition out. Set a high number for the Transition Out > Delay.
Regards,
Ismael -
AuthorPosts

