Forum Replies Created
-
AuthorPosts
-
Hi,
Can you create an administrator account and post it here as a private reply?
Regards,
JosueHey!
Add this code to the Quick CSS:
.post-entry-3440 { padding-right: 50px; }
Cheers!
JosueHi DavyE!
I tested trying with red, it appears to work, see screenshot below:
Best regards,
JosueHey!
Add this code to the Quick CSS:
#header_meta{ z-index: 100; }
Cheers!
JosueHi,
Can you post the link to your website please?
Regards,
JosueHi Rohan!
You could use a specialized plugin for that: http://wordpress.org/plugins/contact-form-7/
Or if you want to stick to the built-in one, take a look at this topic: https://kriesi.at/support/topic/mail-subject/
Regards,
JosueHi,
Can you create an administrator account and post it here as a private reply?
Regards,
JosueOctober 31, 2013 at 6:41 am in reply to: make header with social icons transparent but leave logo part solid #182836Hi,
Can you post the link to your website please?
Regards,
JosueYou are welcome Rohan, we are here to help :)
Cheers!
JosueHey Simon!
Please update your theme to the latest version of Enfold (2.4.2):
Cheers!
JosueHey!
I think that change was intended due to a design trend (i may be wrong), however if you don’t like it, simply add this code to your style.css:
.avia-button{ background-image: url("../images/layout/bg-button.png"); background-repeat: repeat-x; background-position: 0 0; }
If it doesn’t work, copy the /images folder from Enfold to your child theme folder.
Cheers!
JosueHey Michae1!
You would need to edit this file: /enfold/includes/helper-social-media.php, play with the html() function declared in line 84.
Put the text string you want and then make a behavior part with CSS.
Best regards,
JosueHi,
Can you create an administrator account and post it here as a private reply?
Regards,
JosueHey!
The width of each table cell is determined by its content, i created a screencast explaining this, please take a look:
http://screencast.com/t/n5eT3xgA
What you need to do is add some line breaks to the table cell content in order to alter its width.
Cheers!
JosueHey!
Have you tried seeing it from another computer?
Regards,
JosueHey!
Can you post a link to a post where the icon isn’t showing up?
Cheers!
JosueThis reply has been marked as private.October 31, 2013 at 12:42 am in reply to: "[LayerSliderWP] Slider not found" after migration to new server #182704Hi,
I thought some of the files may be missing, due to the migration, that’s why i suggested updating, however i’d like to check the actual error, can you create an administrator account and post it here as a private reply?
Regards,
JosueHi,
You forgot a link to your website.
Regards,
JosueHey!
Add this code to the Quick CSS:
#menu-main-menu .sub-menu .current-menu-item a{ color: red !important; }
I don’t think making it bolder would work because all the sub-menu links are actually bold.
Cheers!
JosueYou are welcome :)
Cheers!
JosueGlad we could help, in the future remember to backup avia.js before updating :)
Regards,
JosueHi,
Try with this one instead:
.single-post .post-entry .big-preview{ display: none !important; }
Regards,
JosueHey!
It is done: http://greaterclarity.staging.wpengine.com/ (hosted on WPengine)
I modified js/avia.js, replaced this (431-490):
elements.each(function(e) { var link = $(this), current = link.find('img:first'); if(current.hasClass('alignleft')) link.addClass('alignleft').css({float:'left', margin:0, padding:0}); if(current.hasClass('alignright')) link.addClass('alignright').css({float:'right', margin:0, padding:0}); if(current.hasClass('aligncenter')) link.addClass('aligncenter').css({float:'none','text-align':'center', margin:0, padding:0}); if(current.hasClass('alignnone')) { link.addClass('alignnone').css({margin:0, padding:0});; if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline-block'}); } } }); elements.on('mouseenter', function(e) { var link = $(this), current = link.find('img:first'), url = link.attr('href'), span_class = "overlay-type-video", opa = link.data('opacity') || 0.3; overlay = link.find('.image-overlay'); if(!overlay.length) { if(current.outerHeight() > 100) { if(link.height() == 0) { link.addClass(current.get(0).className); current.get(0).className = ""; } if(!link.css('position') || link.css('position') == 'static') { link.css({position:'relative', overflow:'hidden'}); } if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'block'}); } if(url) { if( url.match(/(jpg|gif|jpeg|png|tif)/) ) span_class = "overlay-type-image"; if(!url.match(/(jpg|gif|jpeg|png|\.tif|\.mov|\.swf|vimeo\.com|youtube\.com)/) ) span_class = "overlay-type-extern"; } overlay = $("<span class='image-overlay "+span_class+"' style='opacity: 0;'><span class='image-overlay-inside'></span></span>").appendTo(link); } } if(current.outerHeight() > 100) { overlay.css({left:current.position().left + parseInt(current.css("margin-left"),10), top:current.position().top + parseInt(current.css("margin-top"),10)}) .css({display:'block','height':current.outerHeight(),'width':current.outerWidth()}).stop().animate({opacity:opa}, 400); } else { overlay.css({display:"none"}); } }).on('mouseleave', elements, function(){ if(overlay.length) { overlay.stop().animate({opacity:0}, 400); } });
With this (431-479):
elements.each(function(e) { var link = $(this), current = link.find('img:first'), url = link.attr('href'), span_class = "overlay-type-video", opa = link.data('opacity') || 0.3; if(current.hasClass('alignleft')) link.addClass('alignleft').css({float:'left', margin:0, padding:0}); if(current.hasClass('alignright')) link.addClass('alignright').css({float:'right', margin:0, padding:0}); if(current.hasClass('aligncenter')) link.addClass('aligncenter').css({float:'none','text-align':'center', margin:0, padding:0}); if(current.hasClass('alignnone')) { link.addClass('alignnone').css({margin:0, padding:0});; if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline-block'}); } } overlay = link.find('.image-overlay'); if(!overlay.length) { if(current.outerHeight() > 100) { if(link.height() == 0) { link.addClass(current.get(0).className); current.get(0).className = ""; } if(!link.css('position') || link.css('position') == 'static') { link.css({position:'relative', overflow:'hidden'}); } if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'block'}); } if(url) { if( url.match(/(jpg|gif|jpeg|png|tif)/) ) span_class = "overlay-type-image"; if(!url.match(/(jpg|gif|jpeg|png|\.tif|\.mov|\.swf|vimeo\.com|youtube\.com)/) ) span_class = "overlay-type-extern"; } overlay = $("<span class='image-overlay "+span_class+"' style='opacity: 0;'><span class='image-overlay-inside'></span></span>").appendTo(link); } } if(current.outerHeight() > 100) { overlay.css({left:current.position().left + parseInt(current.css("margin-left"),10), top:current.position().top + parseInt(current.css("margin-top"),10)}) .css({display:'block','height':current.outerHeight(),'width':current.outerWidth()}).stop().animate({opacity:opa}, 400); } else { overlay.css({display:"none"}); } });
Final file: http://greaterclarity.staging.wpengine.com/wp-content/themes/enfold/js/avia.js?ver=1
Cheers!
JosueOctober 30, 2013 at 9:48 pm in reply to: VIdeo URL doesn't work when parameters added after the URL #182604Excellent, thanks for pointing that :)
Regards,
JosueHey!
Add this code to the Quick CSS:
.logo img, .logo a { max-height: none !important; }
Cheers!
JosueOctober 30, 2013 at 9:21 pm in reply to: Logo Not Resizing Properly When Mobile Width is Less Than 480px #182585Glad you fixed it, let us know if you have any more questions or issues :)
Regards,
JosueOctober 30, 2013 at 9:20 pm in reply to: Black Studio TinyMCE for editing sidebar footer elements #182583Hey waveseven!
Tested with Enfold 2.4 / WP 3.6, it appears to work:
Can you post a screenshot of your view?
Best regards,
Josue -
AuthorPosts