Forum Replies Created
-
AuthorPosts
-
January 26, 2019 at 11:04 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059259
Also vorhin war auch der Responsive Fall für mich ok.
Jetzt sehe ich die Seite nicht mehr, da du ja wohl wieder im Wartungsmodus bistJanuary 26, 2019 at 7:33 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059227genau – sieht jetzt gut aus. Oder?
January 26, 2019 at 7:32 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059226siehe einen Post vorher da stehen jetzt 85% und ein margin-top von 90px
also den einen Code mit dem anderen ersetzen.
Und bitte den Button in der linken Zelle entfernen.January 26, 2019 at 7:16 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059221für Deine Seite denke ich wäre es gut die Werte so anzupassen:
add_action( 'wp_footer', 'move_impressum_button' ); function move_impressum_button() { ?> <script type="text/javascript"> (function($){ $('.avia-button-wrap.kontakt-botton').insertAfter($('.avia-button-wrap.kontakt-botton').closest('.flex_cell')); $('.avia-button-wrap.kontakt-botton').css({ "position": "absolute", "top": "85%", "left": "5%", "margin-top": "90px" }); $('.avia-button-wrap.kontakt-botton').prev('.flex_cell').css("padding-bottom", "100px") })(jQuery); </script> <?php }January 26, 2019 at 7:13 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059220bitte nicht zusätzlich sondern ausschließlich
dann musst du nur noch diesen Top wert von 75% anpassen
January 26, 2019 at 7:08 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059217den Impressum Button nur in die Rechte Zelle setzen. Links aus der Zelle wegnehmen !
-
This reply was modified 7 years, 1 month ago by
Guenni007.
January 26, 2019 at 6:59 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059215Bitte tausche den Code mal aus- ich habe das ganz aus dem Flex-Cell rausgenommen !
Und nimm den Impressum Button in die Rechte Zelle !
Dann kannst du auch die linke Zelle Verschwinden lassen.January 26, 2019 at 6:57 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059213ich hatte den code oben jetzt mal verändert.
Dann kannst du die linke Zelle bei mobil versteckenDu musst dann nur den Button in die Zelle rechts mit hineinsetzen. Nach unten. Denn die absolute Positionierung macht den Rest dann.
January 26, 2019 at 6:22 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059208wenn du es eingerichtet hast machen wir die Feinheiten.
January 26, 2019 at 6:13 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059204hm – das Problem ist, das der innere Container in dem Grid oben platziert ist.
Versuche doch mal bitte das hier in der functions.php deines child-themes:add_action( 'wp_footer', 'move_impressum_button' ); function move_impressum_button() { ?> <script type="text/javascript"> (function($){ $('.avia-button-wrap.kontakt-botton').insertAfter($('.avia-button-wrap.kontakt-botton').closest('.flex_cell')); $('.avia-button-wrap.kontakt-botton').css({ "position": "absolute", "top": "75%", "left": "5%", "margin-top": "50px" }); $('.avia-button-wrap.kontakt-botton').prev('.flex_cell').css("padding-bottom", "100px") })(jQuery); </script> <?php }-
This reply was modified 7 years, 1 month ago by
Guenni007.
the input field is there – but in this case all other form_elements will do the same.
If you only likes to center the button send try this in quick css:
.form_element .button[type="submit"] { position: relative; left: 50%; transform: translateX(-50%); }January 26, 2019 at 3:26 pm in reply to: Button Element fixiert in einer Zelle über Hintergrund mittig unten platzieren #1059142Es wäre um einiges leichter mit der entsprechenden Seite einen css code dir zu liefern.
-
This reply was modified 7 years, 1 month ago by
Guenni007.
the #top id belongs to the body tag – it can not be placed before the html tag !
( the classes : avia_desktop and avia_transform3d are on html tag )
and this could not work before too! try:.avia_desktop.avia_transform3d #top .av-masonry-animation-active .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry { -webkit-animation: none !important; -moz-animation: none !important; animation: none !important; }ok – got it. it was one of the older shortcodes that disturbed the things.
Sorry can be closed
Dear Victory – sometimes questions from other users can also be a help for other participants. So please make the helpful answers public.
if i do not find a solution – i will open a new topic – because on my Enfold 4.5.3 i got an issue that on Chrome only the mega menu is to small:
see here : https://webers-testseite.de Menu-Point is: TestpagesAha after clearing cache on firefox – it is there too.
-
This reply was modified 7 years, 1 month ago by
Guenni007.
we don’t like to see the “Öffnungszeiten” when hamburger menu is open
change on .logo .subtext the z-index to 2
so now we had to find the solution for small screens so complete code could be:
#top .logo, #top .logo a { overflow: visible; } /* Subtext styling */ .logo .subtext h2 { font-size: 20px; font-weight: 600; line-height: 26px } .logo .subtext { position: absolute; top: 60%; right: 0; transform: translate(110%, -50%); z-index: 2; width: 500px; } @media only screen and (max-width: 768px) { /* Reduce the logo height to make space for the subtext below */ #top #header .logo img { max-height: 70%!important; margin-top: 10px; } /* OPTIONAL CHOICE : Change position of subtext when scrolled */ #top #header .logo img { max-height: 100%!important; } #top #header .logo .subtext { position: relative; top: 10px; left: 0; } }You see the link above – under it there is: “Subtext style and position”
Open the toggle “Add subtext to the right of the logo”
This css you need to add to your Quick css.So add to quick css:
#top .logo, #top .logo a { overflow: visible; } /* Subtext styling */ .logo .subtext h2 { font-size: 20px; font-weight: 600; line-height: 26px } .logo .subtext { position: absolute; top: 60%; right: 0; transform: translate(120%, -50%); z-index: 999; width: 500px; }January 25, 2019 at 10:21 am in reply to: How change the logo area manu from horizontal to vertical #1058589First of all : this is vertical and you want to change it to horizontal?
You like to have something like this hier on Page LInk: https://kriesi.at/themes/enfold/
This is called Mega Menu on Enfold. https://kriesi.at/themes/enfold/features/#tab-id-9
goto Dashboard – Appearance – Menus choose your Main Menu and goto that “Products” link – now there are three littel arrow on the right side of the link Heading – the most right one is a bit different – hover it – you see you can edit that link.
Mark “use as Mega Menu” – now all of your second level Menu Points goes to column. Each Column you can edit too. On these columns there is a checkbox “this column should start a new row”
You can have then 2 horizontal lines etc.January 24, 2019 at 9:41 am in reply to: How change the logo area manu from horizontal to vertical #1058088on Enfold – General Layout there is a :”Logo and Main Menu” you can choos left or right side for logo and Nav.
You mean that it looks like: https://kriesi.at/themes/enfold-consulting/hier ist eigentlich eine ganz gute Anleitung:
https://kriesi.at/documentation/enfold/logo/#image-logo-with-subtext
wäre dann sowas für das functions.php des child-themes:
add_filter('avf_logo_subtext', 'kriesi_logo_addition'); function kriesi_logo_addition($sub) { $sub .= '<h2>Öffnungszeiten<br/>Mittwoch bis Sonntag ab 20.00 Uhr</h2>'; return $sub; }css kannst du auf der Link seite sehen.
Wenn du das hast wäre ein live Link schön, um das Styling auch für den Responsive Case zu gestalten.
Siehe hier auf die schnelle : (ohne jetzt den Mobile Style einzuarbeiten.) https://webers-testseite.de/cynthia/unite4-2/One request before I start figuring out the code for you right now. Could you be clear with yourself how the header should look like?
Yesterday it was not a shrinking header today already.
Without the shrinking it would be much easier – because the hight of the widget has influence on that shrinking code.On your desired header look like – there is a
- non shrinking header
- logo left
- menu right – but under Logo
- header-meta with some info ( social media etc)
- Phonenumber plus button besides the logo on the right
So look to this if it fits your needs: https://webers-testseite.de/ostler/
January 21, 2019 at 4:53 pm in reply to: Change H2 to H1 in full screen slider via PHP seems not to work, as it did once #1056785Wie gesagt – wenn mal was nicht funktioniert, dann kann das sein, weil sich nach einem Update am Code der betreffenden ALB einiges geändert hat. Dann hat es meist ein wenig Zeitverzögerung bis die Neuen Files wieder auf der Seite sind.
Die findest du im Übrigen auch Github von Enfold als Dritthersteller Beiträge: https://github.com/KriesiMedia/enfold-library/January 21, 2019 at 4:27 pm in reply to: Change H2 to H1 in full screen slider via PHP seems not to work, as it did once #1056759Wenn du das Merging von Enfold nutzt bitte die Files refreshen: Dashboard – Enfold (Child) – Performance und dann : Delete old CSS and JS files?
Und PPS: das Pulldown ist natürlich bei Caption ( Beschriftung)
January 21, 2019 at 4:23 pm in reply to: Change H2 to H1 in full screen slider via PHP seems not to work, as it did once #1056754Nein der ist dafür nicht nötig.
Was halt oben beschrieben ist, damit die Child-Theme ALB Elemente genommen werden ist folgender Code im child-theme functions.php:add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths){ $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }Und bitte alle 4 files uploaden
January 21, 2019 at 4:18 pm in reply to: Volle Breite Untermenü Problem mit postition fixed #1056749maybe you updated the theme? See here – that was an old bug but it is fixed now since 4.5.1: https://kriesi.at/support/topic/transparent-header-with-sticky-submenu-between-768-and-990-px/
you can still see the point at: https://kriesi.at/themes/enfold-2017/elements/sub-menus/ because there is still Enfold 4.4
January 21, 2019 at 3:56 pm in reply to: Change H2 to H1 in full screen slider via PHP seems not to work, as it did once #1056741ist eigentlich dort ganz gut beschrieben.
Wie gesagt – prinzipiell würde es auch funktionieren, wenn man die Parenttheme Files ersetzt. Geht aber dann immer bei jedem Update verloren.
Ausserdem benötigt man wirklich nur den enfold-child/shortcodes folder ( die weitere Baumstruktur muss nicht erhalten sein)January 21, 2019 at 3:11 pm in reply to: Change H2 to H1 in full screen slider via PHP seems not to work, as it did once #1056714But this will work best with child-theme use:
if you are using my edited ALB Elements like in the thread you mentioned – i do actualised them to the newest enfold always on this page:
https://webers-testseite.de/edited-enfold-alb-elements/#sliders
you will then have this on the ALB :Hast du eine Link für uns?
if it is only one line or less text – he could try to do it via avf_logo_subtext filter – thats why i asked him for details
And if “Logo on the left, menu below. top right a text area for the opening times.” he can use normal Phonenumber Input field.So waiting for more input of him/her
-
This reply was modified 7 years, 1 month ago by
-
AuthorPosts


