Forum Replies Created
-
AuthorPosts
-
September 18, 2013 at 11:04 am in reply to: Fullscreen easy slider in IE8 background out of proportion #162850
Hey! I will switch back, but the image repeating will be disabled of course. so on ie 8 you will simply see a centered version of the image and if the image is smaller than the viewport there will be whitespace around it. So when uploading a big image of about 1500px x 1500px its pretty save to say that 90% of those ie8 user will never see the difference. and since the remaining 10% of ie8 users are not even a full percent of all visitors I think for now its a good tradeoff :)
Going to close this thread now. If I happen to find out anything new I will repopen here so you might want to stay subscribed for a month or two :)
Hey! Just checked the site on my phone and the background images appear nice and as expected. Mind sending a screenshot and telling us which version of iOS you are using?
Hey!
In theory I was able to solve the issue with tag encoding. However I will probably not include it in the next patch tomorrow since I had to change string encoding in a few places that could affect a lot of other elements as well. Once i have worked for a few days with the modifications active I will be able to tell if it causes any issues, and if it doesnt we will add it to Enfold Version 2.3 :)
Cheers!
Nice catch!
Will ad a slightly improved version of this to the next patch, one that also allows to link to external pages with a # symbol :)
Cheers!Kriesi
September 18, 2013 at 12:50 am in reply to: Fullscreen easy slider in IE8 background out of proportion #162614Hey! I have played around yet another 5 hours and I think this is almost unsolvable. the effort we put combined into this issue is no longer worth it.
The slider has all the proper ie8 fallbacks for full cover background images applied. crazy stuff like ms filters and filter that should fix the issues and does that on other themes we use just fine. but for a strange reason I cant get it to work here.
ie8 somehow messes the whole thing up no matter what and at this point I have no idea what is causing the issue. I even deleted all non related css and the problem still persists. so at this point I think its safe to say that the fullscreen slider cant work 100% IE8 with this theme. It will either distort the images or only align it centered without stretching it, even if the vieport is bigger than the image. I think I will re-set the slider to the second non-distorting behavior since at least a user can upload a big image and circumvent the distortion problem. its probably also save to say that not many IE8 users have a screen resolution of more than 1500px so they will never encounter the problem.
Sorry for that, I almost never give up on any issue but I have wasted so many hours now on this that I simply want to throw my windows machine out of the window -_-
Hey! Thanks for pointing that out.
I already found a fix for the problem, next update will be out soon and make the slider work as expected :)Cheers!
KriesiHey! You might find the faq items on this page helpful: http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990/support
To prevent further hijacking I will close this now. If you have any new findings feel free to open a new thread which links to this one, we will merge them then ;)
Since we are going to rewrite the icon system anyways I hope this will be fixed then :)
September 17, 2013 at 10:29 pm in reply to: Lost all the avia blocks on a page upon save.. revision does not work. #162545yes, it seems that the plugin creates a table for each blog on the site per default. will suggest to the plugin author to change that :)
logo is called in your header.php file like this:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
this points to the logo in folder enfold/images/logo.png
a simple if statement would eb enough:
if(is_page(1)) { echo avia_logo(AVIA_BASE_URL.'images/layout/logo1.png', false, 'strong'); } else { echo avia_logo(AVIA_BASE_URL.'images/layout/logo2.png', false, 'strong'); }
You need to make sure that you didnt set a custom logo in your backend, or it will overwrite those locations
@mp3dk: the only reason I could think off is an invalid name/key combination. You might want to double check that :)
September 17, 2013 at 10:17 pm in reply to: Function to get the Logo in fixed Header smaller if you´re scroll the site down #162533This is not possible out of the box. Sorry. In this case I would recommend to create a child theme with a customized header.php file that fetches different menus and logos based on the page id.
Its not a difficult customization but it would probably take a few hours with testing, so I am afraid I cant really just post a code snippet here that makes all of that happen ;D
September 17, 2013 at 10:11 pm in reply to: Function to get the Logo in fixed Header smaller if you´re scroll the site down #162525no, not without further customization. but to tell the truth, I wouldnt recommend it anyways. screen estate on mobile devices is so limited, I wonder why anyone would ever want a fixed header at all on a phone…
Hey!
You can change the header on a page by using a development feature of mine:
when editing the page create a new custom field with the name “header_setting”
as value you can use one of the following strings, which represent the various header settings:fixed_header nonfixed_header fixed_header social_header nonfixed_header social_header nonfixed_header social_header bottom_nav_header
September 17, 2013 at 9:36 pm in reply to: Function to get the Logo in fixed Header smaller if you´re scroll the site down #162508the fixed header disables itself when shown on small screens (based on width)
if you want to disable it on all mobiles and tablets use:
.avia_mobile #top #header {position: relative; } .avia_mobile #top #main {padding:0 top:-1px; }
In addition: the next update will also remove that bug since we pack the updated layerslider script into the theme ;)
I am afraid its much more complicated than that :) The old forum was a using completely different software and the conversion script had to run for more than 2 hours to import it into the new system.
I am not even sure if at this point it would be possible to retrieve those favorites without a few hours of work. :(
Hey Boris! It seems the import script was unfortunately not able to migrate those favorites, I am very sorry for that :/
Hope its not too much trouble to find what you marked as favorite :/
Best regards!Hey! Kann den fehler leider auch nicht reproduzieren. Hab die seite jetzt 30 mal neu geladen und die Sidebar erscheint immer :/
Gibts bestimmte widgets die nicht auftauchen oder fehlt die ganze sidebar?September 17, 2013 at 8:46 pm in reply to: Function to get the Logo in fixed Header smaller if you´re scroll the site down #162472Hey! The following modifications worked for me:
CSS:
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 250px; line-height: 250px; } .fixed_header.social_header #main { padding-top: 281px; }
javascript:
set_height = function() { var st = win.scrollTop(), newH = 0; if(st < el_height - 60) { newH = el_height - st; header.removeClass('header-scrolled'); } else { newH = 60; header.addClass('header-scrolled'); } elements.css({height: newH + 'px', lineHeight: newH + 'px'}); }
I used a fixed value for the javascript, that actually makes the calculations for a human person easier :) Replaced the dynamic height with a fixed value of 60px
actually I think the solution is not 100% correct. mind trying this:
instead of:
$data = json_decode( $request['body'] );
use
if(!is_wp_error($request)) $data = json_decode( $request['body'] );
September 17, 2013 at 7:54 pm in reply to: Blog Fallback Thumbnail Not Working When Adding Blog Posts Through ALB #162434Hey Unfortunately, since the width and height of the image will change when on different devices setting a fixed height wont really work. My best recommendation would be to create and upload a custom “dummy” image that you use if you dont want to display a feature image
Hey Guys!
At least for now I will not give away any of the modifications made to the theme. I will add some of them as tutorials to the blog over time, but for the near future I want to have a site that has some unique elements and styles. In addition to that most of the stuff is really tailored to my theme only and is not very user friendly to use or set up.
Cheers!
KriesiGreat to hear that you solved it. Closing this thread for now, if you have any further questions let us know ;)
September 16, 2013 at 8:34 pm in reply to: 6 principles: könnt ihr den Code mit uns teilen ? #161869Hey Nicole!
Vorerst werd ich mal keine der größeren Modifikationen rausgeben. Einerseits sind sie weder auf multiple szenarien getestet und auch nicht sehr benutzerfreundlich, andererseits will ich das die Seite wenigstens am Anfang ein paar einzigartige Elemente hat :)
sorry und lg
Kriesi -
AuthorPosts