Forum Replies Created
-
AuthorPosts
-
Hey,
We need to inspect the actual page to give you a proper solution.
Regards,
Ismael
Hey,
Glad you figured it out.
You should try addThis plugin, it’s good. :)
Cheers,
Ismael
Hi,
According to this link you should create the image file directly as .ico.
http://stackoverflow.com/questions/122067/favicon-not-working-in-ie
Regards,
Ismael
Hey,
Use this for the hover state:
.header_color .main_menu ul:first-child > li a:hover {
color: red;
}Regards,
Ismael
Hey,
Please try this:
.header_color .avia-menu-fx {
background-color: #ffffff;
color: #ffffff;
border-color: #ffffff;
}Regards,
Ismael
Hey,
Please edit js > avia.js, find this code:
if(st < el_height/2)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/2;
header.addClass('header-scrolled');
}Replace it with:
if(st < el_height/1.5)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/1.5;
header.addClass('header-scrolled');
}Please don’t forget to remove browser cache then reload the page a few times.
Regards,
Ismael
August 26, 2013 at 2:17 am in reply to: How to move logo flush with left side boxed layout?? #137517August 26, 2013 at 1:51 am in reply to: Title breadcrumb in the header is not truncated correctly with Unicode #136389Hey,
Edit framework > php > class-breadcrumb.php, find this code:
/* Set up the default arguments for the breadcrumb. */
$defaults = array(
'separator' => '»',
'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',
'after' => false,
'front_page' => true,
'show_home' => __( 'Home', 'avia_framework' ),
'echo' => false,
'show_posts_page' => true,
'truncate' => 70,
'richsnippet' => false
);Replace truncate with ‘140’ or something higher.
/* Set up the default arguments for the breadcrumb. */
$defaults = array(
'separator' => '»',
'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',
'after' => false,
'front_page' => true,
'show_home' => __( 'Home', 'avia_framework' ),
'echo' => false,
'show_posts_page' => true,
'truncate' => 140,
'richsnippet' => false
);Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS:
html {
background: white;
}Regards,
Ismael
Hi,
No, you need to inspect each menu element using Firebug or Google Chrome’s Inspect element. Using Chrome, right click on the menu items then click “Inspect Element”. The menu item ID will look like this:
Yours will be different.
Regards,
Ismael
Hi,
Did you try recreating the page from scratch? You can use Contact Form 7 for this page only.
Regards,
Ismael
August 26, 2013 at 1:22 am in reply to: Adding social network feeds to the homepage – Enfold theme #137507Hey,
Please refer to this link on how to add social icons using addThis: https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header?replies=4#post-134606
Once you’re done, go to Appearance > Widgets then insert a Text widget on the Footer – column widget areas. Copy the social button code on the Text widget.
Regards,
Ismael
August 26, 2013 at 1:18 am in reply to: How to move logo flush with left side boxed layout?? #137514Hey,
You can add this on your custom.css or Quick CSS:
div .logo {
float: left;
position: absolute;
left: -200px;
}Adjust the left position.
Regards,
Ismael
Hey,
Can you give us a link to the page with mega menu? We need to inspect it.
Regards,
Ismael
Hi,
You can add a unique category for the posts that you don’t want to show then configure the Blog Post element option. Select only the categories that you want to show.
Regards,
Ismael
Hey,
You can use this on your Quick CSS:
.main_color blockquote {
color: red;
}Regards,
Ismael
Hey,
You can add a unique selector to the h1 tag. Something like this:
<h1 class="awesome" style="text-align: center;">MY TEXT HERE</h1>
You can then style it on your custom.css or Quick CSS:
h1.awesome {
font-size: 20px !important;
color: #ffffff !important;
}Regards,
Ismael
Hi,
Please use the http://wordpress.org/plugins/addthis/. It doesn’t break the layout of the theme.
Refer to this link on how to add the buttons: https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header?replies=4#post-134606
Use the Text widget to add the addthis social button code on the Footer – Column widget area.
Regards,
Ismael
Hey,
@jimbolgs: You can actually insert shortcode on your footer widgets. Use the Text widget then place it on the Footer – Columns widget area. Try the button element. :)
Cheers,
Ismael
Hey,
Glad you fixed it. :)
You can place the code on the child theme’s style.css:
.image-overlay.overlay-type-extern {
display: none !important;
}Cheers,
Ismael
August 25, 2013 at 2:17 am in reply to: Avia Layout Builder – Insert into Page button not working #137188Hi,
I can’t seem to reproduce the issue on my end. I have WordPress 3.6 and Enfold 2.0.1 and the button is working ok. Have you tried switching to the Advance Layout Editor? You can use the “Image” element to insert images. Let me tag the rest of the support team.
Also, please try to create a test site then activate Enfold. Check if the “Insert into page” button is working there.
Regards,
Ismael
Hey,
First, can you give us a link to website?
1.) You don’t have to use WP Google Fonts for Open Sans. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:700';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:700';
return $fonts;
}This will enable the Open Sans Bold 700. Go to Enfold > Styling > select a Heading Font and Define the Font for your body text.
Again, use the code for the LayerSlider layers with the css selector “.layerslider-open-sans”:
.layerslider-open-sans {
font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
font-weight: 700;
}3.) You can access custom.css via FTP or your cpanel. It is located on wp-content/themes/enfold/css folder.
Regards,
Ismael
Hey,
How many columns are you using for your portfolio items? Can you give us a link to the page?
Regards,
Ismael
-
AuthorPosts