Forum Replies Created
-
AuthorPosts
-
Hi,
Please give us a link to the website. You can change the hover state with this:
.header_color .main_menu ul:first-child > li > a:hover {
color: red;
}Regards,
Ismael
Hi,
You should probably decrease the size first before uploading it to the slider.
Or you can edit the layer then go to Style tab, specify the width and height.
Regards,
Ismael
Hi,
All I can see on the page are youtube videos. I don’t see vimeo links.
Regards,
Ismael
Hi,
You need to add this on your functions.php before you can assign specific css selector for each element.
add_theme_support('avia_template_builder_custom_css');
Regards,
Ismael
Hey,
Can you give us a screenshot? You can post it here using imgur, dropbox, mediafire etc. It is weird, this is the first time I’ve heard of it. Please download 1.9.1, it should fix the Slider issues.
Regards,
Ismael
August 7, 2013 at 5:21 am in reply to: Enfold > Page Contents completely dissappeared in edit mode #133443Hi,
@ridcon: The slider should be fixed on 1.9.1. Please remove browser cache then reload the page. You might want to redo the slider from scratch.
Regards,
Ismael
Hi,
The errors you’re having are not a big issue. This is the list of wordpress error level reporting.
http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting
Regards,
Ismael
August 7, 2013 at 2:42 am in reply to: Switching Between Advanced Layout Editor and Default Editor Stopped Working #133572Hi,
You can switch the Advance Layout Editor(ALE ) to debug mode. This way, you’ll access to the actual shortcode while working on the ALE. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}
add_theme_support('avia_template_builder_custom_css');You’ll see the actual element shortcode below the ALE.
Regards,
Ismael
Hi,
It is not the 404 page, it is the search page. You need to edit search.php.
Regards,
Ismael
Hi,
1.) We can’t give you free support for any third party plugins, you need to contact the plugin author for that.
2.) We’re not having any problem with Enfold Google Map Widget. Can you please implement the theme widget then give us a link to the page? We want to inspect it.
Regards,
Ismael
Hi,
Use the 1/5 element then add this code on your custom.css or Quick CSS
.flex_column.av_one_fifth.first.avia-builder-el-first {
margin-left: 0 !important;
}
.flex_column.av_one_fifth.first.avia-builder-el-last {
margin-left: 6%;
float: left;
clear: none;
margin-top: 0;
}
div .av_one_fifth {
margin-left: 6%;
width: 10%;
}Regards,
Ismael
Hi,
You’re doing it wrong:
<?php
global $avia_config;
/*
* get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
*/
get_header();
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
?>
<div class='container_wrap main_color <?php avia_layout_class( 'main' ); ?>'>
<div class='container'>
<div class='template-page template-portfolio content <?php avia_layout_class( 'content' ); ?> units'>
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-page.php and that will be used instead.
*/
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
get_template_part( 'includes/loop', 'portfolio-single' );
comments_template( '/includes/comments.php');
?>
<!--end content-->
</div>
<?php
//get the sidebar
$avia_config['currently_viewing'] = 'page';
get_sidebar();
?>
</div><!--end container-->
<?php get_footer(); ?>Remove everything on single-portfolio.php then place the code above.
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
height: 116px !important;
line-height: 116px !important;
}Adjust the height and line-height according to the height of your logo. Don’t remove the !important.
Regards,
Ismael
Hi,
You can start with this:
Change the menu and logo container height:
/*header with social icons: */
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 50px; line-height: 50px; }Then change the logo size independently
.logo.bg-logo {
height: 100px !important;
}Regards,
Ismael
Hi,
Looks like you added a plugin that is not compatible with the theme, please add this on your custom.css
.shr-agile_carousel {
display: none;
}
#f3d9b4362c {
display: none;
}Regards,
Ismael
Hi,
Place a horizontal rule element shortcode, select Whitespace then height to 1px.
[av_textblock custom_class='']
[av_hr class='invisible' height='1' shadow='no-shadow' position='center' custom_class='']
[/av_textblock]Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS to change the color of the active page menu.
.header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a {
color: white;
}Regards,
Ismael
Hi,
You need to highlight a certain text or object before you can use the buttons.
Regards,
Ismael
August 6, 2013 at 5:51 am in reply to: Problems with Featured Video on "Blog" on Home Page through Advanced Layout #132817Hi,
How do you embed the videos? You can also use the Image element then supply the video url. This will render the image preview on Blog posts, once click the videos will open on lightbox.
Regards,
Ismael
Hi,
Please download the latest version of Enfold which is 1.9.1. It will fix the slider issues.
Regards,
Ismael
Hi,
Please follow the instruction here: https://kriesi.at/support/topic/how-to-avoid-rendering-extra-line-breaks#post-129384
Regards,
Ismael
August 6, 2013 at 5:41 am in reply to: Change background color of input field in the search bar #133210Hi,
Please use this on your custom.css or Quick CSS to change the background color of the search field.
#s {
background: white !important;
}And this for the input color.
#top .header_color input[type='text'], #top .header_color input[type='input'] {
color: red !important;
}Change the color value.
Regards,
Ismael
Hi,
Please remove the code then replace it with this:
.tabcontainer div {
margin-top: 0;
}On the first and first image, you have a span hr inner. Please remove that to align the images properly.
Regards,
Ismael
-
AuthorPosts