Forum Replies Created
-
AuthorPosts
-
September 25, 2016 at 12:06 pm in reply to: Main Menu Parent Highlight while sub or child is selected #691305
sorry : can you please erase first code completely and then i will have a look again.
it is just the problem to stay in first-level rules and not to influence submenu aswell.
And this here too. I can swear – yesterday it worked like a charm with the fix of Josue – today not ( the only thing – firefox had an Update tonight)
And this background-attachement : fixed is only a bug of firefox ( when there is transform)I don’t know what happens today!
btw: on that construct is it possible to have a slider without transform ?
- This reply was modified 8 years, 2 months ago by Guenni007.
But – I think this is only a nice feature for screens with more than 768px – so pack it into a media querry
not enough place for content with a fixed footer. Maybe set the footer to display: nonewell i would do it via the scaler container:
.mfp-iframe-scaler { width: 80vw; height: 45vw; left: 50%; top: 50%; transform: translate(-50%, -55%) ! important; position: relative; }
the vw is video-screen width ( if you got a 16:9 video – 80% of videoscreen-width results in nearly 45% of videoscreen-width for the height)
- This reply was modified 8 years, 2 months ago by Guenni007.
and perhaps we should take instead of
.height( ) the .outerHeight( )
see Result here: Link
btw: the footer background-color is a gradient – just a test – nothing i will realy work with.
And diagonal backgrounds are just to see what happens realy ( landing page )- This reply was modified 8 years, 2 months ago by Guenni007.
September 24, 2016 at 4:22 pm in reply to: I've submitted 4 tickets with no response to my knowledge #691184Sorry
September 24, 2016 at 4:14 pm in reply to: I've submitted 4 tickets with no response to my knowledge #691182Well i guess you are not familiar with css coding?
<center><font size=”6px” color=”black”>Get this <font color=”red”>Free CD</font> that will give you <br><br>
a step-by-step proven process to <br><br>
hire winners instead of wimps <br><p style="text-align: center; font-size:6px; color:#000">Get this<span style="color:red"> Free CD</span> that will give your<br/><br/> a step-by-step proven process to <br/><br/> hire winners instead of wimps</p>
Edit : sorry the word “hire” seems to be automatically linked to a page here on board
you can take for p other tags like div or span
btw : you realy want to display the font-size 6px ?
- This reply was modified 8 years, 2 months ago by Guenni007.
done !
September 24, 2016 at 4:01 pm in reply to: How do I control the description of the menu links on the Creative Studio Demo? #691174on dashboard / appearance / menus – on top right of this window there is “Screen Options” push that little button.
Now you can choose what the menu options dialog should look like
under the “Show advanced menu properties” there are some interesting things f.e. you can give each list point an own class !
And for those little things in hamburger-menu the “description” that is the point you are looking for
check those things you like to have.then you only must toggle the menu list point at that little arrow
- This reply was modified 8 years, 2 months ago by Guenni007.
still testing – but im on a good way i think
hm – i don’t know if every section or grid etc got this class (container_wrap) if so we can do that:
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { $(window).load(function() { var socket = $('#socket'), footer = $('#footer'), spacerh = socket.height() + footer.height(); $('#main .container_wrap:nth-last-child(3)').css('padding-bottom', spacerh ); }); $(window).resize(function() { var socket = $('#socket'), footer = $('#footer'), spacerh = socket.height() + footer.height(); $('#main .container_wrap:nth-last-child(3)').css('padding-bottom', spacerh ); }); })(jQuery); </script> <?php }
and in quick css :
#footer { position: fixed; left: 0; width: 100%; z-index: 1; bottom: 58px } #socket { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1; } #footer-socket-spacer { clear: both; position: relative; width: 100%; }
- This reply was modified 8 years, 2 months ago by Guenni007.
but there has to be in the function an option for window resize – because footer height changes with content. On small screens we got a growing footer height (with socket too- but not so often)
It has to proof in time (dynamically) the height of socket and footer – how can we do that?
The code above works if we actualize the window but does not react on window-resize- This reply was modified 8 years, 2 months ago by Guenni007.
thats why i’m astonished – on my sites it works well ! (WP4.61 Enfold 3.8)
by the way : for that page you use a fixed footer!
i would not set the z-index to 0 – that is a bit confusing.
isn’t it this way a bit looking better:#footer { background-color: rgba(87, 98, 112, 0.9); bottom: 58px; left: 0; position: fixed; width: 100%; z-index: 1; }
how did you do that with the spacer ?
and by the way if this is the site with background image to go away i would like to get rid of that before 480px
@media only screen and (max-width: 768px) { #service { background-image: none !important; } }
.home #av_section_1 .av-special-heading-tag span { background: #000 !important; color: #fff !important; padding: 0 15px; }
the padding is not necessary but i think it looks better.
this is a little plugin which could reset the wordpress ( and the database too) to default (like a clean install)
If you have content – this is gone tooEdit: ok if you are only changing vor that wp-content/uploads/dynamic-avia 777 is ok ! I did not follow your link and thought you did it for all files /folders so forget the rest here
But 777 is too much.
Go on reading how to set the correct file permissions.I think for the files itself it is 640 and for the folders 750
but 644 and 755 seem to be ok too. For wp-config you should have 640 ( on normal Use)
Sometimes if you install f.e. Caching tools – they want to insert some code to wp-config – this has to be allowed for that moment.
only my uploads, upgrade and temp folders got a different permission.For example the quick css info goes to wp-content/uploads/dynamic-avia
these files must have write permissionsBTW sometimes (it depends on your hoster) the file-permissions are ok but the owner-ship is wrong.
For my hoster f.e. i had to set the owndership to wp user (not ftp) and i have than the possibility to set the ftp-user react like a wp-user.
Only that setting allows me to have automatic updates of wordpress. etc –________________
Security is a wide and complex field in wordpress.
The wp-config.php is a very important file to secure so there are a lot of things you can doOn apache Server you can use for that the htaccess file f.e.
<files wp-config.php> order allow,deny deny from all </files>
- This reply was modified 8 years, 2 months ago by Guenni007.
you see my example page above that it works !
but without a link to your site this is only “divination” – from a screenshot it is nearly impossibel to say what code might help you
My guess was – that on your screenshot there is a color-section with heading in it!
There was a second line which should get a different background-color than the first line.So to make a selection possible these two lines must have a different source. To get one i inserted a span tag to the second line of the heading.
- This reply was modified 8 years, 2 months ago by Guenni007.
Aber das ist dann wohl eher das browser problem und nicht enfold zuzuschreiben.
First of all – my code above was an example because you did not say what to change! btw: my code is not in your source code!
.forsikring_priser .pricing-table-wrap:nth-child(1) li.avia-heading-row, .forsikring_priser .pricing-table-wrap:nth-child(1) li.avia-button-row a { background-color: #d04372; } .forsikring_priser .pricing-table-wrap:nth-child(3) li.avia-heading-row, .forsikring_priser .pricing-table-wrap:nth-child(3) li.avia-button-row a { background-color: #87c7ab; }
for each column 1, 2, 3 see in nth-child(1)
September 23, 2016 at 1:26 pm in reply to: Main Menu Parent Highlight while sub or child is selected #690702have a look here: https://kriesi.at/support/topic/mega-menu-top-level-styling-while-menu-is-active/
for mega-menu this is a bit easier: (but you will not have mega-menu on that template)
.open-mega-a { color: #0976ac !important; }
but for your template i think this could be a good way:
#avia-menu > li.menu-item.current-menu-item a, #avia-menu > li.menu-item.active-parent-item a { background: #097ac0 ; padding-left: 10px; } #avia-menu > li.current-menu-item .avia-menu-text, #avia-menu > li.active-parent-item .avia-menu-text { color: #fff !important; } #avia-menu > li.current-menu-item .avia-menu-subtext, #avia-menu > li.active-parent-item .avia-menu-subtext { color: #efefef !important; }
because the first level nav list points are allready bold there will be no big difference in selected or not
- This reply was modified 8 years, 2 months ago by Guenni007.
September 23, 2016 at 1:07 pm in reply to: How to change the color of the down arrow in the new custom design demo? #690681#top .scroll-down-link { color: #f00 !important }
if you don’t want to change it for all give the section a custom class :
#top .custom_class .scroll-down-link { color: #f00 !important }
September 23, 2016 at 1:03 pm in reply to: How to remove a section background image only on smartphones? #690677That Image belongs to a color-section and on that demo page this color section got his own id so
@media only screen and (max-width: 480px) { #service { background-image: none !important; } }
play a bit with the 480px screenwidth
If there is no ID make one ore give the color-section an own custom class- This reply was modified 8 years, 2 months ago by Guenni007.
September 23, 2016 at 12:57 pm in reply to: Is there an element like the one you're using on your homepage? #690674No – i think there is no alb element for that but – everything concerning to this is in the source code of kriesies landing page.
All css and all js – you only have to learn how to extract it – – by reading (search function (circles) will bring you alot of similar solution (and sometimes i believe the original code for those “principles” and “pricipel” are not so complicated)
For me i respect his (Kriesis) will not to share it.is it a demo import 1/1 after a clean install?
i can not believe after seeing your about page. there has to be something went wrong with the import.
You can use wordpress reset ( be carefull – if it is a life site – and not a demo) to go back to a clean install – and reinstall the demo new.
Wait till demo import stops.Bitte schau doch mal hier zum nachlesen: https://kriesi.at/support/topic/enfold-de_de_formal/
du wirst wahrscheinlich auch “Deutsch Sie” im WordPress eingestellt haben.
Kriesi (Christian) ist dahingehend bereits informiert. Bei einem der nächsten minor Updates wird es wohl behoben sein.Ich half mir in dem ich via ftp im Enfold/lang Ordner die beiden de_DE Dateien umbenannte nach de_DE_formal
also de_DE_formal.po und de_DE_formal.mo
So bezeichnet nämlich auch WordPress deutsch seine Formalen Sprachfiles.
Dann ist auch wieder das Backend deutsch. Und eventuell klapt es dann auch wieder mit Locotranlate.
Kriesi hat es aber wie gesagt auf dem Plan als kleinen Bug.September 23, 2016 at 11:40 am in reply to: Remove "related videos" when displaying Youtube videos in lightbox #690621by the way – you have to be vimeo member to get rid of other links at the end – thats bad – because by this youtube is better video hoster than
thats it: http://webers-testseite.de/ikom/full-slider-with-content/September 23, 2016 at 10:18 am in reply to: Remove "related videos" when displaying Youtube videos in lightbox #690578Check this forum for posts, you’ll find lots of the same question.
Never trust a person who says trust me :lol:
btw: if you like to have a bigger iframe size like in my example above:
.mfp-iframe-scaler { height: 45vw; left: 50%; position: relative; transform: translate(-50%) !important; width: 80vw; }
the height comes from the 16:9 ratio 80% of viewport widht results than in a height of 45%
if you want to optimise it for that iframe you have to set up here a custom class- This reply was modified 8 years, 2 months ago by Guenni007.
September 23, 2016 at 10:12 am in reply to: Remove "related videos" when displaying Youtube videos in lightbox #690575the lightbox solution
you have an image placed and for the link option choose manually insert:
this was the copied code from youtube site:<iframe width="1280" height="720" src="https://www.youtube-nocookie.com/embed/G0k3kHtyoqc?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
you have to put in that manually link now:
https://www.youtube-nocookie.com/embed/G0k3kHtyoqc?rel=0&showinfo=0" frameborder="0" allowfullscreen ?iframe=true
i added for the lightbox option ?iframe=true
Result see here:
http://webers-testseite.de/ikom/full-slider-with-content/- This reply was modified 8 years, 2 months ago by Guenni007.
September 23, 2016 at 9:51 am in reply to: Remove "related videos" when displaying Youtube videos in lightbox #690566goto the youtube video and look to the share button – one button right there is the embed button open it
now there is ( a bit hidden) another button with “more” – press it now you got the following image:there is a list what you can choose on options ( one is not listet – the autoplay function! code: ;autoplay=1 )
copy the iframe embed code – without the width / height instructionsthis iframe embed code you can place in a code alb element !
The only thing now is to set up the height/ width of the video
soon more to come here :lol:edit: autoplay does not work in lightbox mode
- This reply was modified 8 years, 2 months ago by Guenni007.
-
AuthorPosts