Forum Replies Created
-
AuthorPosts
-
Hey Justin!
Try with this code:
div#home .container { width: 100%; margin: 0; }Best regards,
JosueCan you post a link to your gallery?
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.wpcf7-form input[type='text'], .wpcf7-form input[type='email'], .wpcf7-form input[type='tel'], .wpcf7-form select { width: 100% !important; padding: 13px !important; margin-bottom: 0 !important; } .wpcf7-form input[type='submit']{ margin: 0; padding: 16px 20px; border-radius: 2px; border-bottom-width: 1px; border-bottom-style: solid; font-weight: normal; font-size: 12px; min-width: 142px; outline: none; }Add “first_form” to the first 1/3 element:
<p class="form_element form_element_third">Cheers!
JosueHey Oliver!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1); function avia_change_postgrid_excerpt_length($length) { $length = 100; return $length; }Cheers!
JosueSeptember 10, 2014 at 10:25 pm in reply to: how to change "title" for link in breadcrumb bar #316964Hi,
Open functions-enfold.php and look for line 307:
if(!empty($link)) $title = "<a href='".$link."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".esc_attr( $title )."' $markup>".$title."</a>";Replace it by this:
if(!empty($link)) $title = "<a href='".$link."' rel='bookmark' title='".esc_attr( $title )."' $markup>".$title."</a>";Regards,
JosueSeptember 10, 2014 at 10:22 pm in reply to: content in color section not aligning to top of page with transparent header #316963Hey!
Try adding this code to the Quick CSS:
.html_header_transparency #top .avia-builder-el-0 .container{padding-top:0 !important;}Cheers!
JosueHi,
Does it happen with the default WordPress theme?
Cheers!
JosueHi!
Those pages should only be accessible to logged users, perhaps at one point they were public and were crawled, give it a few weeks to re-index or use the Webmasters removal tool:
https://www.google.com/webmasters/tools/removals?pli=1Cheers!
JosueHi Trevor!
Use this:
#top .comment-count { font-size: 18px; line-height: 40px; width: 40px; } #top .center-border { width: 45%; }Cheers!
JosueHi Nuno!
That gallery is actually composed entirely of images, the ‘video’ ones are images linking to videos, you can build something like that with the Masonry Gallery (Media Elements), use images and link the video ones to YT/Vimeo URLs, the lightbox will get added automatically:
http://screencast.com/t/KhBo9f3LHRegards,
Josue-
This reply was modified 11 years, 7 months ago by
Josue.
Hi!
Please check this video:
Cheers!
JosueSeptember 10, 2014 at 9:48 pm in reply to: Promo BoX Button not showing up after WP 4.0 upgrade #316936Hi!
That’s not possible because that image is a background image, one thing you can do is set a white opaque background to the testimonials:
#av_section_1 .avia-testimonial-wrapper { background: rgba(255,255,255,0.9); border-radius: 10px; }Best regards,
JosueHi Joe,
Does it happen with the default WordPress theme?
Cheers!
JosueHi!
Use this:
.team-img-container, .team-img-container img { border-radius: 0 !important; }Best regards,
JosueSeptember 10, 2014 at 9:25 pm in reply to: Glitch- replacing an image and other information getting deleted. #316917You are welcome, glad to help :)
Regards,
JosueHi!
I’m not seeing any “Permanent Link” on the pages but if you want to control the link you can do it this way:
add_filter('avf_title_args', 'change_title_for_Archives', 10, 1); function change_title_for_archives($args) { if(is_archive()){ $args['title'] = get_queried_object()->name; $args['heading'] = "h2"; $args['link'] = "http://google.com"; } if(is_singular('post')){ $args['title'] = "Something"; $args['link'] = "http://google.com"; } return $args; }Regards,
JosueYou are welcome Mattia, glad to help :)
Regards,
JosueSeptember 10, 2014 at 5:15 pm in reply to: Use the social toolbar with template builder posts #316774You are welcome, glad to help :)
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueWe looking forward to hearing from you :)
Regards,
JosueHi!
The setting is meant to work on the single post view and it does work. However, there is a way to have a custom loop-index.php file if you use a child theme.
Regards,
JosueHey!
Afaik those are the only two plugins Kriesi uses on the demo page (BWP Minify and WP Super Cache), that being said if you compare the results you’d note that there are some other things you’d need to cater on your own, like gzip compression and serve scaled images.
Cheers!
JosueSeptember 10, 2014 at 4:20 pm in reply to: WordPress 4.0 update causes Avia Layout Builder not to work 2 #316710Hi!
Thanks for sharing that solution, the problem is that the plugin isn’t compatible with WP 4.0 yet.
Best regards,
JosueHi Mattia!
Try with this code instead:
.error404 .entry-content-wrapper h3, .search .entry-content-wrapper h3, .error404 .entry-content-wrapper .avia_combo_widget, .search .entry-content-wrapper .avia_combo_widget { display: none !important; }Cheers!
JosueSeptember 10, 2014 at 3:48 pm in reply to: Promo BoX Button not showing up after WP 4.0 upgrade #316674Hey!
Regarding the columns issue, try adding this code to Quick CSS:
@media only screen and (min-width: 767px) and (max-width: 989px) { .responsive #top { overflow-x: hidden; } .responsive .boxed#top { width: 100%; } .responsive .container { width: 682px; margin: 0 auto; } .responsive .units, .responsive .unit { margin: 0; } .responsive .container .one.unit, .responsive .container .one.units, .responsive .container .two.units, .responsive .container .three.units, .responsive .container .four.units, .responsive .container .five.units, .responsive .container .six.units, .responsive .container .seven.units, .responsive .container .eight.units, .responsive .container .nine.units, .responsive .container .ten.units, .responsive .container .eleven.units, .responsive .container .twelve.units, .responsive #top #wrap_all .flex_column { width: 100%; margin-left: 0; margin-bottom: 20px; } .responsive #top.boxed .stretch_full { width: 100%; } .responsive #top #main .sidebar {display:none; } }About the promobox issue, try increasing the allocated memory available to PHP:
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHPCheers!
JosueHi,
Can you please create me an temporary FTP account? post it here as a private reply.
Regards,
JosueI just put this in the .htaccess file:
<FilesMatch "\.(ttf|otf|woff)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule> </FilesMatch>Cheers!
JosueSeptember 10, 2014 at 3:15 pm in reply to: Glitch- replacing an image and other information getting deleted. #316648Hey Tory!
Try increasing the memory allocated to PHP:
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHPRegards,
JosueHi,
Open includes/loop-index.php and remove line 174-175:
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." "; echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>';Regards,
Josue -
This reply was modified 11 years, 7 months ago by
-
AuthorPosts
