Forum Replies Created
-
AuthorPosts
-
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
Hey,
You can add this:
#header_main_alternate {
background: white;
}Use this to move the phone number:
.social_header .phone-info {
position: relative;
top: 0;
right: 10px;
}Adjust the top and right position.
Regards,
Ismael
Hi,
If I am not mistaken it should be included on the “License” text. Let me tag the rest of the support team.
Regards,
Ismael
Hey,
Do you have the latest version of the theme? Please download Enfold 2.0.1 on your themeforest account. The backslash issue should be fixed on the latest update. Also, upgrade your WordPress installation to 3.6.
I tested the code you provided, this is what I see:
Regards,
Ismael
Hey,
1) Please try to re-upload the wp-contentthemesenfoldconfig-layersliderLayerSlider folder and make sure that the folder permission is set to a reasonable value like 755. Make sure that the wp-contentthemesenfoldconfig-layersliderLayerSliderlayerslider.php file exists on your server.
2) Try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Regards,
Ismael
Hey,
Are you talking about the Advance Layer Slider? You need to create two sets of sliders. One for the English language and one for the Danish language.
Regards,
Ismael
Hey,
@chooseone: You can add an image background on footer. Go to Enfold > Styling > Footer > Background Image.
Regards,
Ismael
August 31, 2013 at 4:35 pm in reply to: Remove Post Picture, Author & Date & Time from Post Slider & Extract excerpt #138562Hi,
1.) Use this on your custom.css or Quick CSS:
.avia-content-slider-inner .slide-image {
display: none;
}
.avia-content-slider-inner .slide-meta {
display: none;
}2.) You can use the <!–more–> tag. http://en.support.wordpress.com/splitting-content/more-tag/
Regards,
Ismael
Hey,
Can you give us a screenshot of what you’re trying to do? You can add a left margin on the widget nav menus to move them closer to the left border. Add this on your custom.css or Quick CSS:
#top .widget_nav_menu li {
margin: 0 0 0 50px;
}Adjust the 50px value if necessary.
Regards,
Ismael
Hi,
The code Dude provided should remove the meta infors from single posts view, blog, archive etc.
.post-meta-infos {
display: none !important;
}Regards,
Ismael
August 31, 2013 at 4:25 pm in reply to: Styling the category tags within the line under the post's title (minor-meta) #138408Hi,
I’m not sure if this is what you want but if you use the nth child selector. You’ll have this effect:
This is the code for the image above:
.blog-categories.minor-meta a:nth-child(1) {
color: red;
}
.blog-categories.minor-meta a:nth-child(2) {
color: blue;
}
.blog-categories.minor-meta a:nth-child(3) {
color: green;
}Regards,
Ismael
August 31, 2013 at 4:18 pm in reply to: Colour Section & Background Attachment Mobile Devices #138539Hey,
Can you give us a link to the website? Do you have the latest version of Enfold, 2.0.1? If you have any plugins installed, please deactivate them first. Let me tag Devin to check this through.
Regards,
Ismael
Hey,
The code above should work for the overlapping menu issue. Please remove browser cache then reload the page. If you have a cache plugin, please flush the settings. FYI, there is still no fix on instances where you rotate the iPad from landscape to portrait mode.
Regards,
Ismael
Hey,
Edit header.php, find this code:
<?php
/*
* Hook that can be used for plugins and theme extensions (currently: the woocommerce shopping cart)
*/
do_action('ava_main_header');
?>
<div class='container'>Below, add the fb code:
<div class="fb-like" data-href="http://developers.facebook.com/docs/reference/plugins/like" data-width="450" data-show-faces="true" data-send="true"></div>
Edit footer.php, find this code:
<![endif]-->
<?php
echo "<div class='bg_container' style='background-image:url(".$avia_config['fullscreen_image'].");'></div>";
}
?>Add the fb script:
div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/de_DE/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>Then add this on your Quick CSS or custom.css to adjust the position of the widget.
.fb-like.fb_edge_widget_with_comment.fb_iframe_widget {
position: absolute;
right: 0;
top: -10px;
}It is better if you use a non-fixed header for this.
Regards,
Ismael
-
AuthorPosts