Forum Replies Created
-
AuthorPosts
-
June 15, 2014 at 12:36 pm in reply to: Show/hide Blog meta elements works only if it is a single? #279089
hey Yigit
I know that it possible to hide elements with simple CSS :-)
But if you have add an option to really removed them it would be normal that this option remove them anywhere thet are show, dont u think?
I will hide them with CSS, but i do not like it because search engine will still follow you hiddens links and I do not want those horribles archives page to be indexed :-)June 15, 2014 at 11:09 am in reply to: Javascript conflict with function trigger_default_open() #279071Hello
1- For the first issue (Javascript conflict with function trigger_default_open()), here is the plugin autho response:——
No, anchors do not require href attributes since HTML5, and it is not essential. The ShiftNav toggle code is perfectly valid.
Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ahref – This was the single required attribute for anchors defining a hypertext source link, but is no longer required in HTML5.
ShiftNav does not break your theme code – your theme code throws an error because it is making assumptions about the elements on the page. This wouldn’t be a problem if it were only dealing with its own elements, but it is binding events to elements that it hasn’t produced, meaning it isn’t controlling the attributes. The theme code should not be assuming that an href is present, when it is not required.
I read through your post in the Kriesi forum. Then I looked at the theme code in /wp-content/themes/enfold/js/shortcodes.js
I think this code:
[js] $('a').on('click',function(){ var hash = $(this).attr('href').replace(/^.*?#/,''); if(hash) trigger_default_open('#'+hash); }); [/js]
should just be written like this:
[js] $('a[href]').on('click',function(){ var hash = $(this).attr('href').replace(/^.*?#/,''); if(hash) trigger_default_open('#'+hash); }); [/js]
That way it only attaches to anchors with href elements, and in the callback you can be sure the href exists. The solution is simple and efficient, and there’s no need to bind the callback to any anchor without an href.
——
So to make it work I replace the A tag of my ShiftNav Menu by a SPAN, this is a workaround, and maybe you could tell to Kriesi about that… ?2/ “To be honest i think it would be better to set a fallback image, background video playback in mobiles is buggy right now.”
Should be great to also tell to Kriesi about that issue, don’t you think ?June 14, 2014 at 7:14 pm in reply to: Javascript conflict with function trigger_default_open() #278936Hello Josue
Added your CSS, now I can touch the Youtube play button but the video do not start : I’ve got a black screen instead… :-(June 14, 2014 at 2:30 pm in reply to: Javascript conflict with function trigger_default_open() #278873This reply has been marked as private.June 14, 2014 at 9:45 am in reply to: Javascript conflict with function trigger_default_open() #278851This reply has been marked as private.I search and found in /js/shorcode.js line 1750, this:
prop["background-position"] = "0px "+ scrollPos +"px";
> This is the reason why the background image is left alignedReplace it with:
prop["background-position"] = "center "+ scrollPos +"px";
and you’ve got a centered horizontally background image wich keep the parallax image.So what… ? It will be very cool if we could choose how the horizontal background parallax image is aligned… because I really hate to modify Enfold core files…
Hello Yigit
I know this video but it’s only the basics of Enfold…
And Devin said: “the current implementation isn’t going to be changed any time soon”
Too bad /-)
Just look at this WordPress theme: http://themetrust.com/demos/port/ and you will see that en parallax image are center/center…Hello Devin
– What is “ALB”?
– you can customize a color section background however you want
Can you give a begining of what I am supposed to do something like that.June 3, 2014 at 7:17 am in reply to: fullscreen slider the anchor #next-section is not fully visible #273746Hello Devin
I’m using an ipad 2 with IOS 7.1.1 and the browser app is the native IOS Safari…Hello
I know very well this page:http://css-tricks.com/perfect-full-page-background-image/ :-) but it’s only talking about fullscreen images
with ‘background-size’ set to ‘cover’ BUT with ‘background-position’ to ‘center center’ AND ‘background-attachment’ to ‘fixed’
So there is no similitude with Enfold except ‘background-size’ because your images are not only fullscreen, they have a parallax effect.However, I modestly think there is better way to use fullscreen backround image with parallax effect, I have setup a test page: http://pascal-bourhis.net/parallax/
As you can see, the left and right edges of my images (red triangles) are all visibles, there is a parallax effect (which can be set to higher or lower) and there is some centered texts.
This demo is based on http://www.minimit.com/articles/lets-animate/parallax-backgrounds-with-centered-contentI think Kriesi should have a look to this and maybe reconsider the way he has done his fullscreen imaged with parallax effect…
thanks
EDIT: I think there is a confusion with parallax images. In my opinion a parallax image it not necessarily a fullscreen image, it’s an image wich can have many layers that can scroll (horizontally or vertically) with different speeds, ie: http://www.bbc.com/news/entertainment-arts-20026367
June 2, 2014 at 4:46 pm in reply to: fullscreen slider the anchor #next-section is not fully visible #273333ok so here a screenshot from my iPad 2 :
Do you entirely see the white demi-circle at the bottom ?June 2, 2014 at 3:29 pm in reply to: fullscreen slider the anchor #next-section is not fully visible #273285Hi Devin
But did you look at your own demo page with an Ipad/landscape ?
> http://kriesi.at/themes/enfold/homepage/transparent-header/
The anchor is not completly visible…
I think there is a true issue with transparent header + a fullscreen slideshow
thanksThis reply has been marked as private.Well done!
thanksThis reply has been marked as private.This reply has been marked as private.This reply has been marked as private.May 27, 2014 at 10:59 am in reply to: fullscreen slider the anchor #next-section is not fully visible #270436me again :)
As I wanted to have a transparent header for the whole site, I made some CSS adjustements wich nearly solve my primary issue.@media only screen and (min-width: 768px) { .responsive #top #header {position: absolute !important;} } @media only screen and (max-width: 767px) { .responsive #top #header {position: absolute !important;} } @media only screen and (min-width: 480px) and (max-width: 767px) { .responsive #top #header {position: absolute !important;} }
If you look my site now you will that this anchor is visible on mobile.
On iPad/Landscape this anchor is nearly entirely visible…May 27, 2014 at 8:17 am in reply to: fullscreen slider the anchor #next-section is not fully visible #270415Please, also note that the back to top goes at a wrong postion when in this configuration…
because of that: margin-top: -80px;- This reply was modified 10 years, 6 months ago by pako69.
May 27, 2014 at 6:33 am in reply to: fullscreen slider the anchor #next-section is not fully visible #270403Hello
Yes it works now on iPhone but not on iPad.
This issue is not particular to my site, it”s an Enfold issue, please look at your demo page: http://kriesi.at/themes/enfold/homepage/transparent-header/ with a mobile…
Please also note that the menu in this demo page is not transparent on mobile…
A fix should be included with next release, don’t you think ?
ThanksMay 26, 2014 at 2:57 pm in reply to: fullscreen slider the anchor #next-section is not fully visible #270116This reply has been marked as private.May 26, 2014 at 1:26 pm in reply to: fullscreen slider the anchor #next-section is not fully visible #270083:-(
Look nwo at my Url:
ipad: no changes
iphone: it’s horribleI do not understant why I should correct this with lines of CSS, it’s an Enfold builtin feature, isn’t it ?
May 26, 2014 at 1:12 pm in reply to: fullscreen slider the anchor #next-section is not fully visible #270071Hello Yigit
I do no use quick css, I prefer to use my own child style sheet, here my breakpoints:
So can you tell me where put your CSS inside MY rules?
(Please not that those meqia queries come from Enfold.)/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */ @media only screen and (max-width: 479px) {} /* Mobile Styles */ @media only screen and (max-width: 767px) {} /* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 989px) {}
May 26, 2014 at 1:03 pm in reply to: fullscreen slider the anchor #next-section is not fully visible #270061This reply has been marked as private.solved…
hamzahmauzam,
I confirm what Dude said because I had the same issue and WPML has already talk about that in their blog:
http://wpml.org/2014/04/status-wpml-wordpress-3-9/
‘please remember that WPML 3.1.4 (the production version) doesn’t work well with WordPress 3.9‘solved ;-)
just added this: #header_main .social_bookmarks {right: 57px !important;} because the social networkThis reply has been marked as private.Hello Yigit
Yes I solved it, it was just to tell you about this issue that should be maybe corrected? -
AuthorPosts