Forum Replies Created
-
AuthorPosts
-
Hi,
I’m sorry but I don’t see your secondary menu.
This code should hide it.
#header_meta .sub_menu {
display: none;
}Regards,
Ismael
Hi,
@jthehijinx,. That is a long stream of company logo on a single image. I think jwferne duplicated the layers a few times to make it seamless. Nice work. :)
Regards,
Ismael
Hi,
I will probably do this.
.current-menu-item > a .avia-menu-fx {
background: black;
}
.current-menu-item > a .avia-menu-fx .avia-arrow-wrap .avia-arrow {
background: black !important;
border-color: black;
}
.avia-menu-fx {
bottom: 0;
}This will make the arrow black on the current page.
Regards,
Ismael
Hi,
I’m sorry but can you give us a screenshot of what you are trying to do?
Regards,
Ismael
Hello,
Can you give us a link to your website?
Adjust the max-width property.
Regards,
Ismael
Hi,
Please check the page. http://bilgin-group.com/blgn-grp-test/?page_id=1456
I took the liberty to specify the parent page.
http://www.mediafire.com/convkey/e12c/8eqqqyi8s0pmncjfg.jpg
And this is the Displayed Everywhere widget area. I place a text widget with blank content.
http://www.mediafire.com/view/wh95y4c730a70iq/widgetdisplay.jpg
Regards,
Ismael
May 27, 2013 at 3:22 am in reply to: How to centre menu with "Header with Social Icons and bottom navigation" #121359Hi,
Maybe this will work.
#header_main_alternate .container {
padding-left: 19%;
}Use Media Queries to target specific screen sizes.
Regards,
Ismael
Hi,
Just insert a Featured Image, it will automatically add lightbox effect when click.
Regards,
Ismael
Hi,
You can Import the Dummy data again.
Or
You use this plugin http://wordpress.org/plugins/duplicate-post/.
Or
Using the Advance Layout Editor, you can save a template and reuse it. Look for Avia Layout Builder, at the bottom right click Templates.
Regards,
Ismael
Hi,
Edit header.php or use this plugin http://wordpress.org/plugins/meta-tag-manager/.
Regards,
Ismael
Hi,
I’m sorry but I didn’t get your email. Although you can hide featured images via CSS.
This is for the single blog post.
.single .big-preview.single-big {
display: none;
}And this is for the portfolio items. This will only work if you set the featured image using the default wordpress Set Featured Image feature.
.single-portfolio .page-thumb {
display: none;
}Regards,
Ismael
Hi,
You can place them on your Quick CSS. You need to target the exact element. We need to use !important because there are declarations that are more specific than the one we use on custom.css. One rule of CSS is based on specificity, with the more specific selector “winning” over more general ones. The theme contains thousands of declarations from different style sheets. Even us cannot know for sure which exact selectors should be use on a specific case.
Cheers,
Ismael
Hi,
Please refer to these links for the header background
https://kriesi.at/support/topic/mega-menu-bug#post-108100
https://kriesi.at/support/topic/header-background-image-2
To change the sidebar background, use this on your Quick CSS
.sidebar {
background: red;
}Regards,
Ismael
Hi,
Please use this plugin.
http://wordpress.org/extend/plugins/regenerate-thumbnails/
Regards,
Ismael
Hi,
Go to LayerSlider WP > Select the slider > Global Settings > Basic > Layers Container, specify the width of the container.
Regards,
Ismael
Hi,
Yes, of course. Edit a page, go to Advance Layout Editor > under Media Elements, insert a slider.
Regards,
Ismael
Hi,
Contact your host, tell them to increase max_input_vars.
If you have access to php.ini file, you can add this lines
max_input_vars = 3000
suhosin.post.max_vars = 3000
suhosin.request.max_vars = 3000Regards,
Ismael
Hello Mr. Jonisu,
Add the css then edit loop-index.php, find this code
if ( get_comments_number() != "0" || comments_open() ){
echo "<span class='comment-container minor-meta'>";
comments_popup_link( "0 ".__('Comments','avia_framework'),
"1 ".__('Comment' ,'avia_framework'),
"% ".__('Comments','avia_framework'),'comments-link',
"".__('Comments Disabled','avia_framework'));
echo "</span>";
echo "<span class='text-sep'>/</span>";
}Replace it with
if ( get_comments_number() != "0" || comments_open() ){
echo "<span class='comment-container minor-meta'>";
comments_popup_link( "0 ".__('Comments','avia_framework'),
"1 ".__('Comment' ,'avia_framework'),
"% ".__('Comments','avia_framework'),'comments-link',
"".__('Comments Disabled','avia_framework'));
echo "</span>";
}We removed
echo "<span class='text-sep'>/</span>";
Regards,
Ismael
Hi,
Font use is
h1, h2, h3, h4, h5, h6, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox {
font-family: Open Sans, 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}PNG text images is preffered when using the LayerSlider WP.
Regards,
Ismael
Hi,
If you are using Google Chrome, right click on the page, click Inspect Element. A new window will appear at the bottom of the page It looks like this.
I highlighted the body class. On the screenshot above, we have .page-id-734 as the page body id.
Regards,
Ismael
Hi,
Please extract the enfold.zip folder first.
OR install it via FTP
Regards,
Ismael
Hi,
Create a new menu then save it. Look for Theme Locations > Main Menu, select your menu.
Regards,
Ismael
Hi,
Open includes >helper-social-media.php then find this code:
$html = "";
$html .= "<".$this->args['inside']." class='".$this->args['class']."_".$icon['social_icon']." social_icon_".$this->counter."'>";
$html .= "<a href='".$icon['social_icon_link']."' class='avia-font-entypo-fontello'>".$avia_config['font_icons'][$icon['social_icon']]."</a>";
$html .= "</".$this->args['inside'].">";Replace it with this:
$html = "";
$html .= "<".$this->args['inside']." class='".$this->args['class']."_".$icon['social_icon']." social_icon_".$this->counter."'>";
$html .= "<a target='_blank' href='".$icon['social_icon_link']."' class='avia-font-entypo-fontello'>".$avia_config['font_icons'][$icon['social_icon']]."</a>";
$html .= "</".$this->args['inside'].">";Regards,
Ismael
Hello,
Please add this on your custom.css or Quick CSS
.container_wrap#footer {
border: none !important;
}Regards,
Ismael
Hi,
Just add this on your custom.css
#footer {
padding: 10px 0 5px 0;
}Cheers,
Ismael
Hi,
1.) Go to LayerSlide WP, select the slider you are currently using. Go to Global Settings > Basic > Layers Container, specify the width of the container in pixels. Suggested is 1030px.
2.) You can hide the submenu using this on your custom.css or Quick CSS
#header_meta .sub_menu {
display: none;
}Regards,
Ismael
-
AuthorPosts