Forum Replies Created
-
AuthorPosts
-
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" #135300Hi,
You can use this to hide the preview image:
.ajax_slide .av_table_col.first.portfolio-preview-image {
display: none;
}Cheers,
Ismael
Hi,
We can help you better if you can give us a live site with the menu issue.
Please remove browser cache then reload the page. Remove any of your plugins or deactivate them.
Regards,
Ismael
Hi,
Can you give us a link to your website? You can use Media Queries to remove the play button overlay when viewing on iPad or iPhone.
@media only screen and (max-width: 767px) {
.image-overlay.overlay-type-video {
display: none !important;
}
}Add the code on your custom.css or Quick CSS
Regards,
Ismael
Hey,
It will be lost on your update. Please create a change log so that you can easily monitor the files that you change or use a child theme.
No, you can’t do it via CSS.
Regards,
Ismael
Hi,
You can use this for the first H2
#industries a:nth-child(1) h2 {
color: red;
}Second H2:
#industries a:nth-child(2) h2 {
color: green;
}Please put the last H2 “REVENUE MANAGEMENT FOR MEDIA COMPANIES” inside an anchor tag then change the style using this:
#industries a:nth-child(2) h2 {
color: pink;
}Regards,
Ismael
-
AuthorPosts