Forum Replies Created
-
AuthorPosts
-
May 10, 2013 at 2:24 am in reply to: Enfold Latest News Widget – Possible to remove small picture & date? #118354
Hi,
What did you change on style.css? Please try to deactivate the theme on Appearance then activate it again.
Regards,
Ismael
Hi,
I can’t reproduce the issue on my end. Can you give us a link to your website?
Regards,
Ismael
Hi,
Edit single.php then find this code
get_template_part( 'includes/related-posts');
Replace that with
//get_template_part( 'includes/related-posts');
Regards,
Ismael
May 10, 2013 at 1:01 am in reply to: Possible to right justify the menu when it's below the logo? #118239Hi,
1.) You can use this
#top .main_menu .menu li {
float: right;
}2.) To make the header fixed, you use this
#header {
position: fixed;
}
#main {
padding-top: 155px;
}3.) You increase the icon size with this
.social_bookmarks .avia-font-entypo-fontello {
font-size: 16px;
}Regards,
Ismael
May 10, 2013 at 12:56 am in reply to: link and bold fonts have same color cant be diffrentiate #118065Hi,
Please add this on your custom.css or Quick CSS.
This is for the links.
.main_color a {
color: #8BBA34 !important;
}This is for the bold text.
.main_color b {
color: #8BBA34 !important;
}Regards,
Ismael
Hi,
Please add the code on Theme Options > Styling > Quick CSS, located at the bottom.
Yes, you can hide the arrows using this code. Again, put this on your custom.css, access via FTP, or on the Quick CSS.
.avia-post-nav {
display: none !important;
}Regards,
Ismael
Hi,
Open functions-enfold.php then find this code
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/'));
Change that with
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '»'));
Regards,
Ismael
Hi,
Check LayerSliderWP, see if it still have the sliders. If not, you can create your own.
Regards,
Ismael
Hi,
Can you give us a link to your website? Did you add anything other than Devin’s code?
Regards,
Ismael
Hi,
Please download the latest version of Enfold which 1.4 on your themeforest account. Override the old files via FTP.
Regards,
Ismael
May 10, 2013 at 12:22 am in reply to: How to create a Full Background image under Blank page? #117903Hi,
Devin is correct you can use the Color Section element then insert all the columns, media, etc inside it. Edit the color section, insert image as background then under Background Repeat, select stretch to fit. Use a fairly large image for this one, maybe, 1600x 1000px.
Regards,
Ismael
Hi,
Go to Appearance > Menu > Page, click the “View All” tab. You can also start from scratch. Create the Portfolio page again and make sure you remember the page name.
Regards,
Ismael
May 9, 2013 at 10:26 pm in reply to: Enfold Latest News Widget – Possible to remove small picture & date? #118352Hi,
You can add this on your custom.css
.widget .news-content .news-thumb, .news-time {
display: none;
}You can find the widget code on framework > php > class-framework-widgets.php.
Regards,
Ismael
Hi,
Please remove browser cache then reload the page. It works fine on my end.
Regards,
Ismael
May 9, 2013 at 9:24 pm in reply to: how to control the size of the smaller logo and/or the depth of the header area #118396Hi,
Edit js > avia.js then find this code
//check if the browser supports element rotation
function avia_header_size()
{
var win = $(window),
header = $('.fixed_header #header'),
elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
el_height = $(elements).filter(':first').height(),
isMobile = 'ontouchstart' in document.documentElement,
scroll_top = $('#scroll-top-link'),
set_height = function()
{
var st = win.scrollTop(), newH = 0;
if(st < el_height/2)
{
newH = el_height - st;
//header.removeClass('shadow');
}
else
{
newH = el_height/2;
//header.addClass('shadow');
}
elements.css({height: newH + 'px', lineHeight: newH + 'px'});
}
if(!header.length) return false;
if(isMobile)
{
return false;
}
win.scroll(set_height);
set_height();
}Replace that with
//check if the browser supports element rotation
function avia_header_size()
{
var win = $(window),
header = $('.fixed_header #header'),
elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
el_height = $(elements).filter(':first').height(),
isMobile = 'ontouchstart' in document.documentElement,
scroll_top = $('#scroll-top-link'),
set_height = function()
{
var st = win.scrollTop(), newH = 0;
if(st < el_height/1.5)
{
newH = el_height - st;
//header.removeClass('shadow');
}
else
{
newH = el_height/1.5;
//header.addClass('shadow');
}
elements.css({height: newH + 'px', lineHeight: newH + 'px'});
}
if(!header.length) return false;
if(isMobile)
{
return false;
}
win.scroll(set_height);
set_height();
}It will reduced the header a bit more taller.
Regards,
Ismael
Hi,
Suggested image size is 1600x470px if you are talking about the LayerSlider background.
You’re website is under maintenance mode.
Regards,
Ismael
Hi,
Might as well remove the circle because it is nested inside the box. You can add this on your custom.css
.image-overlay.overlay-type-extern {
display: none !important;
}Regards,
Ismael
Hi,
The selector use for the very top header is
#header_meta {
border-top: none;
box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
z-index: 400;
min-height: 30px;
background: white;
}If you want to remove it you can use this
#header_meta {
display: none;
}Regards,
Ismael
Hi,
Please edit js > avia.js then find this code
//check if the browser supports element rotation
function avia_header_size()
{
var win = $(window),
header = $('.fixed_header #header'),
elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
el_height = $(elements).filter(':first').height(),
isMobile = 'ontouchstart' in document.documentElement,
scroll_top = $('#scroll-top-link'),
set_height = function()
{
var st = win.scrollTop(), newH = 0;
if(st < el_height/4)
{
newH = el_height - st;
//header.removeClass('shadow');
}
else
{
newH = el_height/2;
//header.addClass('shadow');
}
elements.css({height: newH + 'px', lineHeight: newH + 'px'});
}
if(!header.length) return false;
if(isMobile)
{
return false;
}
win.scroll(set_height);
set_height();
}Replace it with
//check if the browser supports element rotation
function avia_header_size()
{
var win = $(window),
header = $('.fixed_header #header'),
elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
el_height = $(elements).filter(':first').height(),
isMobile = 'ontouchstart' in document.documentElement,
scroll_top = $('#scroll-top-link'),
set_height = function()
{
var st = win.scrollTop(), newH = 0;
if(st < el_height/1.5)
{
newH = el_height - st;
//header.removeClass('shadow');
}
else
{
newH = el_height/1.5;
//header.addClass('shadow');
}
elements.css({height: newH + 'px', lineHeight: newH + 'px'});
}
if(!header.length) return false;
if(isMobile)
{
return false;
}
win.scroll(set_height);
set_height();
}Regards,
Ismael
May 9, 2013 at 12:55 am in reply to: Theme Version is still 1.3.1 after updating with latest theme folder #118152Hey,
You can actually change style.css look for Version then change it to 1.4 if it really bothers you. :)
Regards,
Ismael
Hi,
My suggestion is to change the background color then increase the z-index. Please add this on your custom.css or Quick CSS.
.avia-post-nav {
z-index: 9999 !important;
background: rgba(174, 198, 44, 0.5) !important;
}Regards,
Ismael
Hi,
Please try to add this on your custom.css
.isotope-item .grid-content {
height: 46px !important;
}See if it fix the issue.
Regards,
Ismael
Hi,
I visited this link http://www.arcconcepts.co.uk/ but I don’t see any multiple titles.
Please watch some video tutorials here https://vimeo.com/channels/aviathemes.
Regards,
Ismael
-
AuthorPosts