Forum Replies Created
-
AuthorPosts
-
Hey,
Please refer to this link: https://kriesi.at/support/topic/override-the-global-avia_config-within-child-functionsphp
Regards,
Ismael
September 3, 2013 at 5:23 am in reply to: Colour Section & Background Attachment Mobile Devices #138544Hey,
Let us wait for Devin and Kriesi to answer. They can check this on an actual iOS device.
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS. This will make the header 58px in height consistently.
/*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
#header_main .container, .main_menu ul:first-child > li a{ height:58px !important; line-height: 58px !important; }
/*header with social icons: */
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 58px !important; line-height: 58px !important; }
/*header with social icons and bottom nav */
.bottom_nav_header.social_header #header_main .container{height: 58px !important; line-height: 58px !important;}
.fixed_header #main {
padding-top: 58px;
}Regards,
Ismael
Hey,
Please follow this short instruction on how to control AddThis plugin more effeciently. https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header
Like what Yigit said, you can place the AddThis social button code on a Text Block or Widgets.
Regards,
Ismael
September 3, 2013 at 4:43 am in reply to: How to always show the "arrow line" below the menu – on child pages, too #138847Hey,
You can add this on your custom.css or Quick CSS:
.current-page-ancestor.current-menu-ancestor .avia-menu-fx {
visibility: visible;
opacity: 1;
display: block;
bottom: 0;
}
.current-page-ancestor.current-menu-ancestor .avia-menu-fx .avia-arrow-wrap {
visibility: visible;
opacity: 1;
display: block;
top: -10px;
}Regards,
Ismael
September 3, 2013 at 4:36 am in reply to: Update WP 3.6 + ENFOLD 1.9.1: Error with RSS/Twitter-Widget #135939September 3, 2013 at 4:28 am in reply to: Styling the category tags within the line under the post's title (minor-meta) #138410Hi,
The screenshot I posted above is the Blog Overview page. The category color looks the same on the single post view.
Regards,
Ismael
September 3, 2013 at 4:25 am in reply to: Weird coding for h3/h5 headlines in the theme's files? Cannot create my own #138376Hi,
Let me tag the rest of the support team. I can’t reproduce the issue on my end.
Regards,
Ismael
September 3, 2013 at 4:22 am in reply to: Enfold: Google Analytics tracking of individual "Sections" in One-Page websites #138815Hi,
I don’t think that’s possible. Anyway, I’m not an expert on SEO so let me tag the rest of the support team.
Cheers,
Ismael
Hey,
You can add this on your custom.css or Quick CSS to change the font size of the Text Block element:
.avia_textblock p {
font-size: 20px;
}Regards,
Ismael
Hey,
You can use this for the + and – sign:
.toggle_icon, .toggle_icon .hor_icon {
border-color: white !important;
}
.toggle_icon .vert_icon {
border-color: white !important;
}And this one to change the border:
.toggler.activeTitle {
background: blue;
color: red;
border-color: red !important;
}
.main_color .toggler {
background: green;
color: blue;
border-color: blue !important;
}
.main_color .toggler:hover {
border-color: red !important;
}Sorry for the color mess, just change them. :)
Regards,
Ismael
September 3, 2013 at 4:04 am in reply to: How to copy contents from the demo pages to a new page #138535Hey,
You can switch the Avia Builder to debug mode. You will see the actual shortcode below the Advance Layout Builder. Edit function.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 copy parts of the template. :)
Regards,
Ismael
Hey,
You need to regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Regards,
Ismael
Hey,
My bad. Add this:
.search-no-results .entry-content.clearfix h3 {
display: none;
}Regards,
Ismael
Hey,
Add a unique custom css selector for the text block then use it to change the background. First, edit function.php and find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_theme_support('avia_template_builder_custom_css');
Now, edit the text block and look for “Custom Css Class” to add a unique selector. Example “awesome-textblock”.
You can add something like this on your custom.css or Quick CSS:
.avia_textblock.awesome-textblock {
background: blue;
padding: 10px;
}September 2, 2013 at 4:00 am in reply to: Colour Section & Background Attachment Mobile Devices #138542Hi,
Looks like the color section is working. It’s just that the sky in the picture is too large for mobile devices and it looks like it is not moving.
http://responsinator.com/?url=http%3A%2F%2Fmarsmarketing.com.au%2Fsme-marketing-brisbane%2F
Regards,
Ismael
September 2, 2013 at 3:54 am in reply to: I recive some issues in my backend when i instal v 2.0.1 #137903Hey,
Do you have a plugin that has something to do with WP Toolbar? Please go to wp-content/plugins then remove any folders that you don’t need. If you have a cache plugin, please flush the settings. Remove browser cache then reload the page.
Regards,
Ismael
Hi,
Yes, just edit functions.php and find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_theme_support('avia_conditionals_for_mega_menu');
Condition logic option will be enabled on the Appearance > Menus panel.
Regards,
Ismael
Hey,
You can use this:
#scroll-top-link:hover {
background-color: red;
color: violet;
border: 1px solid white;
}Regards,
Ismael
Hi,
You don’t need to comment out anything to hide the logo. Add this on your custom.css or Quick CSS:
.logo.bg-logo {
display: none;
}Remove browser cache then reload the page.
Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS:
.blog-tags.minor-meta {
display: none;
}Regards,
Ismael
Hi,
You can use this on your custom.css or Quick CSS:
This is for the active accordion title box:
.toggler.activeTitle {
background: blue;
color: red;
}And this is for the inactive boxes.
.main_color .toggler {
background: green;
color: blue;
}Regards,
Ismael
Hi,
It is showing properly on my end. Please update to WordPress 3.6 and download Enfold 2.0.1.
Regards,
Ismael
Hi,
The indent and bullet points are still there. Just add this on your custom.css or Quick CSS
#top .sidebar_left .widget_nav_menu ul ul li:before {
left: 0;
}Please give us a link to your website.
Regards,
Ismael
September 2, 2013 at 3:12 am in reply to: Icon Lists & Icon Boxes – Content Disappearing and strange rollover effects #137606Hey,
IE8 doesn’t support the background-color and border-color properties, that is why we added the background and border properties. Can you provide us a link to the moving rollover images within an iconbox?
Regards,
Ismael
September 2, 2013 at 3:04 am in reply to: How do I add a Facebook icon next to the Twitter and RSS Feeds Icons? #136342Hi,
Yes, it is located on line 624. Add the code below:
$output .= "<a href='http://www.facebook.com/kriesi'>".apply_filters('avf_social_widget',"", 'facebook')."<span>Like us</span></a>";
This is what it will look like if you follow the instructions successfully.
Please remove browser cache then reload the page a few times.
Regards,
Ismael
Hi,
This will fix it. Add this on your custom.css or Quick CSS:
#spMainContainer .spInlineSection {
z-index: 0;
position: relative;
}Regards,
Ismael
-
AuthorPosts