Forum Replies Created
-
AuthorPosts
-
überprüfe das mal ob wirklich der Header sich in den Maßen ändert. Ich denke die Section verändert sich dadurch, und da sowohl Header als auch Section ähnliche Hintergrundfarben haben siehe es so aus als würde der header höher. Da Logo bleib jedenfalls in seiner Größe gleich.
Ausserdem hast du ja unterschiedliche min-height Einstellungen gesetzt- und das mit unterschiedlichen Hintergrundbildern.
this seems to be a nice little plugin: https://en-gb.wordpress.org/plugins/bluet-keywords-tooltip-generator/
it works with a glossary in the background: that means all your keywords shows on content with a tooltip.
f.e. if you use CEO in your text – it will show the tooltip. You do not need to insert that manuallysee here – and hover CEO: https://webers-testseite.de/tooltip/
What you are looking for is called a tooltip. You could create this manually yourself by placing a text after the texts that require explanation inside a f.e. span tag with a special custom class and then using this class to show/hide it when hovering.
However, if you use this frequently, this is probably a cumbersome method. There are probably some plugins that could do just that.
see for example that demo: https://tooltips.org/wordpress-tooltip-plugin/wordpress-tooltips-demo/Well, it is possible to use animated gifs as featured images.
See here : https://webers-testseite.de/blog-seite/
Video hosters like vimeo or youtube now offer a way to generate these (I think it was 8 seconds) small preview videos.
In order to use these as featured images, you have to fulfill some requirements regarding the maximum size, for example.to have the same behaviour – you can use Enfold Options to set a preview image, and use quick css to replace it with the animated gif at hover.
see here at the bottom left: https://webers-testseite.de/videotests/October 22, 2024 at 9:37 pm in reply to: How do I stop wordpress page builder defaulting for a new page #1469645First On Theme Options you find at the bottom: “Select Your Editor” – choose the classic editor
Next if you like to see at start the advanced builder editor you can add this to your child-theme functions.php:
function trigger_alb_on_load(){ ?> <script> (function($){ $(window).on('load', function(){ setTimeout(function() { $("#avia-builder-button").trigger('click'); }, 300); }); })(jQuery); </script> <?php } add_action('admin_head-post-new.php', 'trigger_alb_on_load');
Next:
ich sagte Dir ja bezüglich der Zentrierung des Logs, das du mit dem Media Query probieren musst bis wann das noch gut aussieht.Du könntest also dieses css durch aus so verändern:
@media only screen and (min-width:449px) { .responsive #top .logo { display:inline-block; width:100% } .responsive .logo a { display:inline-block } .av-contains-svg { left:50%; transform:translateX(-50%) } }
zusätzlich könntest du für alle Weiten folgendes setzen:
.responsive #top .logo img, .responsive #top .logo svg { width: 250px; }
den “Jump” wirst du ja nur an Desktop Browsern sehen. Ein Mobiles Endgerät wird nur in der Lage sein beide Zustände zu sehen, wenn die Größe des Displays im Querformat mehr als diese 768px beträgt. Durch das Kippen ist aber ohnehin soviel optisch im Umbruch, dass man das Springen hier kaum wahrnehmen kann. Das Phänomen tritt ja nur auf, bei Desktop Browsern, deren Größe durch ziehen des Fensters verkleinert wird.
Ich finde das Verhalten des Hintergrundbildes im responsiven Fall der ersten color-section da viel schlimmer.
___________
You will only see the “jump” on desktop browsers. A mobile device will only be able to see both states if the size of the display in landscape format is more than 768px. Due to the tilting, however, there is so much visual change anyway that you can hardly notice the jumping here. The phenomenon only occurs with desktop browsers whose size is reduced by dragging the window.
I find the behavior of the background image in the responsive case of the first color section much worse.
October 21, 2024 at 11:41 pm in reply to: Dia slideshow element: changing h-tag, overlay and location/font size title #1469580isn’t it on default a h2 heading?
Der dreht euer X im Logo auf Plus bei geöffnetem Burger Menü – kleine Spielerei
sorry ist ja jetzt anders …
.av-contains-svg { padding-top: 10px; }
Du hast gesehen, was dieser code macht: https://kriesi.at/support/topic/burger-menu-right/#post-1469564
:lol:
.avia-svg-logo g:nth-of-type(5) { transform-origin: 155.25px 18.8px; transition: transform 0.3s ease; } .av-burger-overlay-active .avia-svg-logo g:nth-of-type(5) { transform: rotate(45deg); transform-origin: 155.25px 18.8px; }
ich denke mit Dir kann ich das gerade in deutsch erledigen.
Wie gesagt Logo links – Navigation rechts. – Dadurch haben wir den Burger schon mal rechtsseitig.
Dann:@media only screen and (min-width: 768px) { .responsive #top .logo { display: inline-block; width: 100%; } .responsive .logo a { display: inline-block; } .av-contains-svg { left: 50%; transform: translateX(-50%); } }
Warum im Media-Query: irgendwann ist der Screen so klein, das es nicht mehr funktioniert. Daher – schau mal bis wann das noch gut funktioniert und gehe dann zurück zur normalen links – rechts relation.
October 21, 2024 at 3:22 pm in reply to: Adding Elements to Color section with background image #1469559looking to your svg now ( a former topic got the link to your page)
the “Ideen” text is black because its class st8 is not set in the defs/style – every not referenced fill will be black.i do not know how you use the path, circles etc in your illustrator.
first : there are other elements inside that svg ( your scetch for example is inside the svg – that is the reason for its big file-size)
next: why clip-path settings ? do you edit your svg in another program?look at this svg code on my example page:
it has unique classes without any clip-path need. It has a size of 5kb due to only using vector elements.
https://webers-testseite.de/ausgesonnen/btw: you can see here how you can determine other classes (graphic-styles) in illustrator.: https://kriesi.at/support/topic/transparent-logo/#post-1459268
and you want the burger at the same height as the logo – or do you want the burger symbol at the bottom right?
i would start in the first case with logo left – menu right – and influence the logo position.
The logo is an inline svg file – is your svg inside the color-section an inline svg too?
– Why asking this: if you got two inline svg files with the same classes inside ( and that often happens if you use illustrator – because if you do not set the grafic styles – illustrator uses in former times st as class – now it is : cls ).
now your logo is often the first svg on your DOM – if now the next svg has a different color setting for that standard class – it will determine the color for all those classes for the whole page – (cascading style sheet).eg: if the class inside the logo there is :
.st1{fill:#EB5F3D;}
and another st1 is on that page – this will determine the fill color.so – be more specific in your selectors:
e.g.:#top.page-id-123 .avia-svg-logo .st1 { fill: #FFFFFF; }
October 12, 2024 at 1:31 pm in reply to: Enfold – Freelancer funktioniert im IPad-Quer-Format nicht #1468976man sollte auf jedenfall für kleinere Screenweiten auch von dem riesen padding der grid-cells abweichen.
z.B.@media only screen and (max-width:1090px) { .responsive #top #wrap_all #main .flex_cell { padding: 30px !important; } }
und man kann wie oben schon gesagt die Cell-Sizes ändern z.B auf 2/5 – 3/5. – im Wechsel
siehe: https://webers-testseite.de/freelancer/October 12, 2024 at 12:10 pm in reply to: Enfold – Freelancer funktioniert im IPad-Quer-Format nicht #1468971ok – was genau ist mit “funktioniert nicht” gemeint?
– bei Scroll das flickern der Hintergrund Grafiken?Ist es sinnvoll 3 columns nebeneinander in eine 1/2 Grid-Zelle zu pressen?
(PS man kann übrigens, die Cell-Breiten ändern : “Set Cell Size”)PPS: ich denke hier an Board sollten wir untereinander Duzen. Im Englischen ist da ohnehin kein Unterschied.
– weiterhin ist die Seite – und das brauche ich Dir ja nicht sagen – extrem abmahngefährdet ( gstatic/recaptcha etc. läßt grüßen )October 12, 2024 at 8:37 am in reply to: Enfold – Freelancer funktioniert im IPad-Quer-Format nicht #1468957könnte Ihr mir mal die Seite als Link zukommen lassen? Wenn es denn absolute nicht geht, das es hier öffentlich gemacht werden kann.
Mein Nick führt Euch ja zu meiner Stammseite, einfach als e-mail dann absenden.
(Habe momentan zwar einen Autoresponder aktiviert, da ich ab morgen mal eine Woche nicht erreichbar sein werde.)Das Problem mit iPad und Konsorten ist, das der mobile Safari momentan zu einem neuen IE6 wird. Die User werden ordentlich bevormundet, was die eigenen Anpassungen desselben betrifft. Ganze Features, die längst in anderen Browsern umgesetzt sind, fehlen hier. Ausserdem gibt es keine vernünftigen Methoden die Seite im Device mit Dev Tools zu inspizieren. Eine Emulation in Safari Desktop via XCode ist umständlich. Ich würde das mal versuchen, wenn ich nicht schon Sequoia installiert hätte.
PS: ich würde es wo es geht vermeiden, mit dem Trick des “doppelten Content in anderen Darstellungsmethoden” zu arbeiten. Dann lieber die vorhandene Gridrow an die neuen Bedürfnisse anpassen.
Diesen Breakpoint kann man natürlich verändern – via css Anweisung z.B.@media only screen and (max-width: 1195px) { .responsive #top #wrap_all .av-break-at-tablet .flex_cell, .responsive #top #wrap_all .flex_column.av-break-at-tablet { margin: 0; margin-bottom: 0px; margin-bottom: 20px; width: 100%; display: block; } }
Das Ein-/Ausblenden von Elementen kann man ganz entsprechend mit ähnlichen Media Queries abändern.
Aber – wie gesagt – um bessere Ratschläge zu geben müsst ich erstmal den Sachverhalt live sehen.October 11, 2024 at 8:33 pm in reply to: Change order of cells in enfold grid row on mobile #1468949this will be hard to get – because each of the grid-rows are a unique container.
you can define the order inside this grid-row ( like mike shows above) – but not switch between different grid-rows.i would do this with color-section and 15 1/5 columns ( this is not needed because width will be set in a different way ) – and it looks nicer in the backend.
We have total control over all columns by giving them unique names ( this is better to handle – then the css selectors )
( on my example page : feld1, feld2 etc ( that means field1, field2 etc. ) )the position is set by the property: grid-template-areas
see example including code on: https://webers-testseite.de/griddy/see what happens in between 550px and 767px – you can combine ( like in a table with colspan or rowspan) areas and fill with only one field.
see when the responsive view is on one Column only. the area 5 is above area 10 etc.Go to Enfold Options Page – Header – Tab: Extra Elements
for the first two settings Header Social Icons and Header Secondary Menu these content had to be set – if they should be shown on that header_meta (top-bar).
For secondary menue – you had to declare a menu as secondary menue on appearance – menus :
For Social icons – go to Enfold Option – Social Profiles.
For Phone Number – you had on the right side an input field for that content ( tags are allowed here)
you might have something like:<a href="domain/kontakt/#av_gmap_0"><span class="map">Location</span></a><a href="domain/kontakt/"><span class="contact">Contact</span></a><a href="tel:+492281234567"><span class="tel">Phone</span></a>
Offtopic
by the way – the template_redirect could be used to have not the ugly : //domain/?s=xyz on search results page
but //domain/search/xyzfunction re_rewrite_rules() { global $wp_rewrite; $wp_rewrite->search_base = 'search'; $wp_rewrite->flush_rules(); } add_action('init', 're_rewrite_rules'); function change_search_url() { if ( is_search() && ! empty( $_GET['s'] ) ) { wp_redirect( home_url( '/search/' ) . urlencode( get_query_var( 's' ) ) ); exit(); } } add_action( 'template_redirect', 'change_search_url' );
what is that wpo minifiy ? maybe this is not working correct.
i got 35 error listiings in dev console.
f.e.: Uncaught ReferenceError: jQuery is not definedtry to deactivate your WP Super Minify clear cachings and have a look if enfold works as expected.
i can find this css in your setting:
homepage:
.avia-slideshow li { padding: 0; margin: 0; list-style-type: none; list-style-position: outside; position: absolute; visibility: hidden; z-index: 1; top: 0; left: 0; width: 100%; clear: both; opacity: 0; overflow: hidden; }
visibility: hidden; opacity :0
.av-masonry-entry { position: relative; display: block; width: 24.9%; float: left; clear: none; text-decoration: none; visibility: hidden; opacity: 0; }
visibility: hidden; opacity: 0; ?
is that what you like to have not a Maintenance Mode Page. Why do you work with a 404 page instead?
there might be good reasons to redirect all 404 to the home page url.
And this is the snippet way to do it –
put in your child-theme functions.php:add_action('template_redirect', function(){ if(is_404()){ wp_safe_redirect(home_url()); exit(); } });
For: “Case Study: Amrop Executive”
Are you talking about the responsive view – when the grid cells are displayed one below the other?
If the image is only background-image – this is no content. So you had to give a height or min-height property to those cells.Actually, I thought there was a min-height option for the individual grid cells (but only for the whole grid-row it does exist). Just put a separator/whitespace in such cells with the desired height.
________
on those three pages and the “Why Choose the Coral Starfish” – there should be banners?
can you name the images you set in – it is then easier to look for it in the DOMyou have various revisions of these pages – try going back if you have accidentally deleted them.
i thought you like to have the first level only in that style.
ok – get rid of the bold setting for parent theme
( via : #top #header .av-main-nav > li.current-menu-item > a )
and use:.header_color .main_menu ul li.current_page_item > a > .avia-menu-text { font-weight:700; color: #000; }
Do you use Safari Browser ?
see: https://kriesi.at/support/topic/enfold-back-end-not-working-in-safari-on-sequoia/#post-1468431
well – be more specific in your selectors – change your rule to :
.header_color .main_menu ul:first-child > li.current-menu-item > a > .avia-menu-text { font-weight:700 }
the greater than (>) indicates that only the direct descendants are meant, and not grandchildren etc.
or you can do that by enfold – under advanced styling there is the choice to style only “main menu links” and that means only first level items.
what was the solution? first snippet or css bug fix?
-
AuthorPosts