Forum Replies Created
-
AuthorPosts
-
the page concerning to is the landing-page of that demo
and i recognised that if i choose on this case not the contain option. If we take there the no-repeat it will be the best for ipad etc.
but i can not force it by media-queries .see here with position fixed but center center and no-repeat ! ?
well it is not as easy as to place it in quick css. on shortcodes.css replacement it has an effect.
perhaps you edit the keyframe too – it looks better – the distance of transformation is to short to see a faster animation.f.e.
@-webkit-keyframes avia-ltr { 0% { -webkit-transform:translate(-50%,0); opacity: 0; } 100% { -webkit-transform:translate(0,0); opacity: 1; } } @keyframes avia-ltr { 0% { transform:translate(-50%,0); opacity: 0; } 100% { transform:translate(0,0); opacity: 1; } }see https://webers-testseite.de/elegant/animated-images/
PS: try to set the keyframes on quick css – i did not test it – if it works
you see that this is only one example of /*animation variations*/
i see alot of animation on your site but not where you uses the enfold implemented one. I see some transfomings with matrix.
Where are your animations to style ?And where is the enfold theme ? :lol
https://js-interactive.com/by the way – very impressive !
i believe it is on wpml easy to obtain – under the wpml options there are on Languages just under Language URL Format the:
Language switcher options
All language switchers in your site are affected by the settings in this section.there is “How to handle languages without translation” try to choose skip language and see what happens
hm – just a moment –
yes indeed
But please think of it if the sprite method is an option to do it – it is used for a long time and has the advantage that the image is completely loaded before someone hovers the image.
Less http request is one reason for it. See here a nice Article about Sprites: https://css-tricks.com/css-sprites/
And here is a Sprite Generator if you are not familiar with photoshop. https://www.toptal.com/developers/css/sprite-generatorsometimes the video starts automatically – sometimes it is only a screenshot seen. and the playbutton on it has no function
Dont know.on shortcodes.css there are some extra entries for the customisable down arrow.
just one line above – on line 369 :
new 4.2:div .av-section-color-overlay{position: absolute; top:0; left: 0; bottom: 0; width:100%; }
old 4.12div .av-section-color-overlay{position: absolute; top:0; left: 0; height: 100%; width:100%; }i replaced this old line in the new 4.2 shortcodes css – and voila even Safari plays the video again.
https://webers-testseite.de/elegant/beispiel-seite/
PS do not wonder – i changed a bit in section.php to have the possiblity to mute or unmute video background.
EDIT: wow just now ? only safari makes some troubles.
OK – we had to search for it – this is not the solution.
-
This reply was modified 8 years ago by
Guenni007.
as far as i can see on color-section only the customisable arrow key was new.
i don’t know why – i’m often exempted from those bugs.
Maybe it is because i do always update via ftp –
i empty all cache before updating and – switch of all caching tools ( wp-supercache , bwp-minify )
i do completely erase the enfold folder.
and then uploading the new one.Edit : well on safari there is a fault – on all the other browser it works as expected.
-
This reply was modified 8 years ago by
Guenni007.
October 26, 2017 at 6:02 pm in reply to: How do I change the button and font color of “submit” button in contact form? #869273open your page on which you like to change it – goto your browser menu and look to the source code.
The body has the page id (looks this way page-id-2604) and is a class . Because body is a parent of main_color classthan try (in my example)
.page-id-2604 input[type='submit'] { background-color: orange ; color: black; border-color: orange; } .page-id-2604 input[type='submit']:hover { background-color: red; color: white; border-color: red; }yes – but even i’m (lol) not able to get it. The display table is tricky.
Can you please post the whole error – that would be helpful
hm i have installed new Enfold on a test page and integrated the new audioplayer on the starting page – i do not have these troubles.
mod_fcgid seems to belong to bwp-minify (Groups.php) .
if you have installed it – please try to deactivate it – to prove if it comes from that.there is on bwp minify on tab “manage enqueued files” the options to exclude js and css from minifying.
If you are shure that it could be the player than try to exclude wp-playlist.js.avia_wpml_language_switch { display: none !important; }did you try to increase the php memory limit – often it is set to low by isp.
You can try to set it by yourself via config.php filedefine( 'WP_MEMORY_LIMIT', '256M' );or try first 128M
maybe this causes the error.
there are some nice plugins to have info about the memory usage: WP-Memory-Usage f.e.
well – i alway use a child-theme and do always manual update by ftp. this is the most secure way.
Did you update via WordPress Update Routine on Dashboard?
Are you using a child-theme – if so : try to upload the whole enfold folder via ftp – make it clean – delete before the existing folder.I did it this morning and have no troubles til now.
If you are updating from a very old version – try the hint with the php version number. Login to your ISP and have a look what Php version you are using. Because i think since enfold 4.1 it is 5.6 recommended.Is there a php memory limit to your installation. some ISP set it to a limit – you can try to increase it ( f.e. via wp-config.php)
-
This reply was modified 8 years, 1 month ago by
Guenni007.
October 25, 2017 at 11:11 am in reply to: I need a simple, blank page with no header/no navigation #868656Yes – but if someone likes to open your homeurl/contact or homeurl/imprint some pages that are often used – the site is than visible.
have a look to it when text is centered and icons are under each other ( text-align : center) i think that is nice too !
De rien, pas besoin de me remercier
by the way the tranlate rule is wrong pasted but anyway this will be better so please test this first
the icons under each other and the text centered
remove the rules before and test this – this is important remove it ( the left 40% etc)
don’t know if flex design is allready used in modern browsers but you can test this:
.iconbox .su-list { display: inline-flex !important; } .iconbox .su-list ul li { position: relative; list-style-type: none !important; display: block !important; line-height: 1.3em; margin: 0 !important; padding: 4px 0 4px 2em !important; text-align: center !important; }please do erase all the rest you tried till now:
.su-list ul li { position: relative; left: 50%; transform: translateX(-50%); display: table !important; }maybe you play a bit with left positioning
BUT ! now you have to say if you only wanted to have it more specific. Because it goes to all su-lists
maybe you set a custom css on that fields where you like to have it
f.e. if you only want to have it on iconboxes:.iconbox .su-list ul li { position: relative; left: 47%; transform: translateX(-50%); display: table !important; }so if you have done that:
you have to get rid of the image in normal menu !
custom-class from the menu will help you : set it to display noneas long as 4.12 does not take over the classes set in menu – then the display none will be enought !!!
maybe for your svg it is needed to set a width option
and to shift it a bit#av-burger-menu-ul li:first-child img { width: 300px !important; position: relative; left: -30px; }see here: https://webers-testseite.de/weber/
but downloadable is only the 4.12 or did you forgot to change it in style.css ?
October 24, 2017 at 1:19 pm in reply to: I need a simple, blank page with no header/no navigation #868179i like this one here: https://de.wordpress.org/plugins/maintenance/
see in action: https://maintenance.fruitfulcode.com/live-demo/
October 24, 2017 at 11:28 am in reply to: Need layer slider blank template / wir brauchen Layer Slider leere Vorlage #868100Du hast meinen Thread gelesen ja? https://kriesi.at/support/topic/need-layer-slider-blank-template-wir-brauchen-layer-slider-leere-vorlage/#post-868037
Bilder scheinen doch mehr zu sagen als viele Worteöffne diese Seite in deinem WordPress Editor Bereich : deine Home url /eingangsbildschirm
da wo Seitenattribute steht Template
um es zu vergrößern Bild klicken

hier noch mal mit dem Slider links und er Wahl : No Header, No Footer __________________
October 24, 2017 at 10:27 am in reply to: Need layer slider blank template / wir brauchen Layer Slider leere Vorlage #868064Eine Änderung des CSS-Datei hätte zur Folge, dass dann auch andere Bereiche der Homepage betroffen sein können.
Du kannst natürlich ein für die Seite spezifisches CSS anlegen.
als zB.page-id-123 .custom-class { color : #900; background-color: #009}
etc. ppOctober 24, 2017 at 10:01 am in reply to: Need layer slider blank template / wir brauchen Layer Slider leere Vorlage #868051Ach noch eines : Warum ist es wichtig, dass es auf Enfold läuft. Im Eingangsbereich ist es doch ohnehin egal , da diese ja im Vollbildmodus läuft oder? Also theoretisch könntest du auch WordPress Twenty Seventeen nehmen und dort das Layerslider Plugin laufen lassen.
PS: setz eine Subdomain an – WordPress drauf und Layerslider installieren. Da sich Layerslider über die Domain registriert, kannst du es auch dort aktivieren. (habe ich noch nicht getestet. Bei meinen Testseiten die ich alle in webers-testseite.de in Unterordner packe ist es jedenfalls so. Bei Subdomains spekuliere ich jetzt (da aber www auch geht ist es wohl möglich).October 24, 2017 at 9:38 am in reply to: Need layer slider blank template / wir brauchen Layer Slider leere Vorlage #868037Das heisst dieses Video im Eingangsbereich ist ein Layerslider Template;
dieses Layerslider teil habt Ihr jetzt in das Enfold importiert. Und nun sehen die Farben anders aus und andere Funktionen gefallen dir nicht.Blank Theme ist einfach:
Punkt 1) damit euch dieses Abspielen des Videos nicht zu dominant das Internetseitenlayout zerstört – setzt es auf eine Seite (zB. Präsentation Eingang). Diese startet Ihr dann Morgens halt. Ich nehme an, dass dieses Teil im Loop läuft.
2) Diese Seite im Editor Modus öffnen – Ihr könnt in der rechten Leiste wo WordPress die Optionen der Seite hinpackt im Enfold bei “Header visibility and transparency” wählen : “Hide Header on this page” dadurch ist schon mal alles was Enfold oben anzeigt weg. Im Footer geht das auch für diese Seite (kein Footer kein Socket)
ODER Besser noch direkt bei Page Attributes : “Blank – no Header no Footer” setzen
3) Der Seite könnte man noch (wieder rechts in der Editor leiste der Seite) bei Publish die Visibility auf “Password Protected” Setzen.
Dann kann die Seite auch nur gestartet werden von jemand der das Passwort hat. Damit die Seite nicht auf der Homepage publiziert wird kann man ja die Links eben nicht ins Menu setzen.schau mal hier: https://webers-testseite.de/be/ Passwort ist : Reflexa
(Das Beispiel ist jetzt nicht so gut, weil die Blätter auf overflow visible gesetzt sind, und so gescrollt werden kann. )
Mal sehen ob ich was anderes finde, damit es deinem Beispiel ähnelt.Zu den Farben:
Sind in dem Layerslider ( weil du immer von Video sprichts) videos eingebettet? – und die oder Alles hat falsche Farben?
Zu den Farben kann ich garnichts sagen – nur Spekulationen äußern. – Ohne das Teil zu haben – zu sehen.Lass doch mal einen der Mods als Admin auf deine Seite. In den Layersldier Ebenen kann man ja die Farben setzen.
Bei eingebetteten Videos – muss man eventuell Farbwerte ändern. Das geht nur extern in einem Videobearbeitungstool. Seit ihr vielleicht international tätig und es ist im ntsc farbmodus produziert etc. pp. Kann viele Gründe habenno ( i will do that from now on ) – and i will in the future open a thread like this instead of always and always answering to the same question.
-
This reply was modified 8 years ago by
-
AuthorPosts


