Forum Replies Created
-
AuthorPosts
-
Hi,
Which slider are we talking about here? Layer Slider, Easy Slider?
You can add this on your custom.css or Quick CSS to show the numbers:
.avia-slideshow-dots a {
display: inline-block;
height: 13.5px;
width: 13.5px;
border-radius: none;
background: #000;
opacity: 0.6;
filter: alpha(opacity=60);
text-indent: 0;
overflow: visible;
margin: 0 1px;
padding: 7px;
color: black!important;
font-size: 30px;
border: none !important;
background: transparent !important;
}Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS:
.main_color tr:nth-child(even) {
color: #121212;
}Regards,
Ismael
Hi,
Edit template-builder.php, find this code:
echo " </div><!--end builder template-->";Below, add this code:
$pagelist = get_pages('sort_column=menu_order&sort_order=asc');
$pages = array();
foreach ($pagelist as $page) {
$pages[] += $page->ID;
}
$current = array_search(get_the_ID(), $pages);
$prevID = $pages[$current-1];
$nextID = $pages[$current+1];
?>
<?php if (!empty($prevID)) { ?>
<a class="avia-post-nav avia-post-prev without-image" href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a>
</a>
<?php }
if (!empty($nextID)) { ?>
<a class="avia-post-nav avia-post-next without-image" href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a>
<?php } ?>Edit page.php, find this code:
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
get_template_part( 'includes/loop', 'page' );
?>Add this:
<?php $pagelist = get_pages('sort_column=menu_order&sort_order=asc');
$pages = array();
foreach ($pagelist as $page) {
$pages[] += $page->ID;
}
$current = array_search(get_the_ID(), $pages);
$prevID = $pages[$current-1];
$nextID = $pages[$current+1];
?>
<?php if (!empty($prevID)) { ?>
<a class="avia-post-nav avia-post-prev without-image" href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a>
</a>
<?php }
if (!empty($nextID)) { ?>
<a class="avia-post-nav avia-post-next without-image" href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a>
<?php } ?>It doesn’t look exactly like the post nav but the it works.
Regards,
Ismael
Hi,
It should be there by default. Go to Appearance > Menu panel. On Theme Locations, select a Main Menu.
Regards,
Ismael
August 15, 2013 at 3:08 am in reply to: Missing blog post and fatal error when trying to login to wp dashboard #135161Hi,
You can use this:
.main_color .hr-inner {
border-color: green;
}Remove browser cache then reload the page.
Regards,
Ismael
Hi,
What do you mean by “changing these to ‘special headings’ with a HR next to the text”?
Regards,
Ismael
Hi,
Please try this:
#top div .avia-gallery img {
max-height: 100%;
}Regards,
Ismael
Hi,
First, upgrade your theme to 1.9.1. Then switch the Advance Layout Editor to debug mode.
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";
}You can now see the actual shortcode below the Advance Editor. You can combine shortcodes like this:
[av_tab_container position='sidebar_tab sidebar_tab_left' boxed='border_tabs' initial='1']
[av_tab title='Tab 1' icon_select='no' icon='1']
Tab Content goes here
[av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
[/av_tab]
[av_tab title='Tab 2' icon_select='no' icon='1']
Tab Content goes here
[av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#000000' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
[/av_tab]
[/av_tab_container]The code above is the tab shortcode with button shortcode inside the toggles.
Regards,
Ismael
Hey,
Please add this on your custom.css at the very bottom:
@media only screen and (min-width: 1140px) {
.responsive .container .twelve.units {
width: 1030px !important;
}
}Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
@media only screen and (min-width: 768px) and (max-width: 989px) {
.main_menu ul:first-child > li > a {
padding: 0 8px;
font-size: 11px;
}
}Regards,
Ismael
August 15, 2013 at 2:42 am in reply to: Continuous background image and page-specific backgrounds #135103Hi,
Sorry but we really don’t give support for third party plugins. The best way to do is to hire a freelancer developer or contact the plugin author.
Sorry for this. :(
Regards,
Ismael
Hi,
I guess you managed to change the button color:
.page-id-1167 .main_color input[type='submit'] {
background: #00121d;
}Nice website.
Regards,
Ismael
Hi,
Instead of using the Image layer, you can use the div/video, paragraph, span layers. You can add the image using html tag.
<img src="YOUR IMAGE URL HERE" />Regards,
Ismael
Hi,
I’ll tag Kriesi. It is happening on my end once you click a “tag” link.

For the meantime, you can hide using this on your Quick CSS:
.tag #recent-posts-4 {
display: none;
}Regards,
Ismael
Hi,
You can’t click the link because of the “fbSEOComments” div. Did you add a plugin?
Please add this on your custom.css or Quick CSS
div#fbSEOComments {
z-index: -1;
}Regards,
Ismael
Hi,
1.) Add this on your custom.css or Quick CSS
#top .widget_nav_menu ul ul li:before {
content: "";
}To remove the indent, use this:
#top .sidebar_left .widget_nav_menu .sub-menu {
padding-right: 0;
}2.) The menus are already aligned to the right.
3.) I’m sorry but I don’t understand clearly. Please give us a screenshot.
Regards,
Ismael
Hi,
You can use this:
.main_color h3.widgettitle {
color: black;
}
.main_color .sidebar a, .main_color .news-time {
color: black;
}Regards,
Ismael
Hi,
You can add this on your custom.css or QUick CSS
.post-meta-infos {
display: none;
}Regards,
Ismael
August 15, 2013 at 2:07 am in reply to: Issue with mobile responsiveness. Tables, Headings and Sliders #135364Hi,
There is still no fix on instances where you rotate the iPad then don’t refresh the page.
To fix the special heading, you can use this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) {
.av-special-heading h3 {
font-size: 14px;
}
}Regards,
Ismael
Hi,
Please update your theme to 1.9.1. Download the latest update on your themeforest account.
You can adjust the header height using this:
/*header with social icons: */
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 116px; line-height: 116px; }Adjust the height and the line-height.
Regards,
Ismael
Hi,
You can place it on includes > loop-index.php, find this code:
echo "<div class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."'>";Below, add the banner code:
echo '<div class="posts_banner">YOUR BANNER HERE</div>';or if you are using an image, you do something like this:
echo '<div class="posts_banner"><a href="URL HERE"><img src="IMAGE URL HERE"></a></div>';It will show on all blog posts.
Regards,
Ismael
August 15, 2013 at 1:34 am in reply to: portafolio grid ajax and functionality likes "accordion" #135300 -
AuthorPosts
