Forum Replies Created
-
AuthorPosts
-
mostly the easy solution is the best.
Thanks Josue – i will keep it in mind. :lol:June 10, 2015 at 5:41 pm in reply to: disable integrated Lightbox effect for a specific page #457415This reply has been marked as private.June 10, 2015 at 5:34 pm in reply to: disable integrated Lightbox effect for a specific page #457407Thanks Great this will work but is there a possibility to do it by a hook or have i to make in child theme a header.php?
isn’t it the old double margin bug on floating elements?
I thought that only IE have it.
the legal notice.
if you like to go to the dashboard/ appearance / menus
you can create a new menu and set it as Enfold Footer Menu
than you can put in it legal notice, privacy statement or anything you want
but be careful – on mobile the footermenu is not visible ( so here in Germany many lawyers will try to injunct you )
- This reply was modified 9 years, 5 months ago by Guenni007.
perhaps it is better to use the :nth-of-type() selector
@media only screen and (min-width: 768px) and (max-width: 1450px) { #top .av-flex-placeholder {display: none} #top .flex_column_table_cell {display: block; float: left} .responsive .flex_column.av_one_fourth.flex_column_table_cell {width: 47.5% !important; margin: 0 2% 2% 0;} .flex_column.av_one_fourth.flex_column_table_cell:nth-of-type(4n+1) {clear: left} }
Ok – i think i got it:
@media only screen and (min-width: 768px) and (max-width: 1450px) { #top .av-flex-placeholder {display: none} #top .flex_column_table_cell {display: block; float: left} .responsive .flex_column.av_one_fourth.flex_column_table_cell {width: 47.5% !important; margin: 0 2% 2% 0;} .flex_column.av_one_fourth.flex_column_table_cell:nth-child(4n+1) {clear: left} }
the point was the av-flex-placeholder ( allthough i set it to display none – it counts as a neighbour div) so i have to clear left every 4th div – and the change from display table to block in some parts
- This reply was modified 9 years, 5 months ago by Guenni007.
June 7, 2015 at 7:36 pm in reply to: How to remove the WPML language flag in the footer at just one page ? #455661the lang-sel-footer is a div
.page-id-816 #lang_sel_footer { display: none !important; }
but it will be very easy to find this out with a testsite you offer.
In this case i switched an installation of mine to find this out !- This reply was modified 9 years, 5 months ago by Guenni007.
btw – how do the visitors come to your website then?
is there no Link to the Rest with navigation ?edit: well if you use
body.page-id-1605 { background: rgba(0, 0, 0, 0) url("//www.joycewolthuis.nl/wp-content/uploads/2015/05/joyce-wolthuis-fotografie-0001.jpg") no-repeat fixed center center / 100% auto; }
it will be with no overflow but there are dark bars on top and bottom
if you use 100% 100% – i guess this is not for a real foto (portrait) a good solution (crushing)if you use contain instead of cover than the smallest part is set to 100% and the bigger part is set to auto
(bars either on top/bottom or left/right)- This reply was modified 9 years, 5 months ago by Guenni007.
what mobile and tablet do you have?
what do you see on the testpage i mentioned above:http://webers-testseite.de/enf02/color-section-background-image/
On my iphone it works well
man kann da die Erstsprache in WPML festlegen. Wobei die Admin Sprache eine andere sein kann. Was zB. oben bei dem Link sehr gut war.
Das sind einige native english spoken und andere deutsch. Jeder kann sich so seine “Dashboard-Sprache” einstellen ohne die primäre Frontendsprache zu beeinflussen.
Wenn du auf den Seiten oder Beiträgen bist siehst du oben in den spalten auch die Landesfahnen.
Darunter in den Zeilen Symbole. Wenn du zu einer bestehenden Seite die Übersetzung eingeben willst klickst du auf das + Zeichen unterhalb der entsprechenden Fahne und schon weiß das Plugin das nun die Übersetzung für die Seite/Beitrag folgen wird. Du gibst nur noch die Inhalte ein inclusive neuem übersetztem Titel und schon wird auch beim umschalten im Frontend die entsprechende Übersetzung im Menu eingepflegt.
Siehe den Link nochmal oben. Sind noch nicht alle Übersetzungen zusammen kannst du dich entscheiden, was passieren soll beim Sprachwechsel. Ich habe zB. beim Link oben das umlenken auf die Startseite festgelegt. (Da sind noch die deutschen Übersetzungen nicht da)Ich kann WPML nur wärmstens empfehlen und wenn du das häufiger machen solltest, dann lohnt sogar die lifetime lizenz.
Sehr mächtig das Teilwie erreichst du die Zweisprachigkeit?
ich nutze das Plugin WPML welches von Enfold bereits sehr gut unterstützt wird:
da kann man sich entscheiden, wo die Fähnchen ihr zu Hause finden.
Meist nehme ich es in diese Enfold secondary nav – oben wo auch soziale netze etc auftauchen.
Schau mal hier: http://carpe-diem-consulting.comdid you read it carefully?
Have you set the custom class for the color-section?Custom class for alb elements via : http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
and did you choose for the color-section : huge padding !
no – you did not – because i can see it in your source code
- This reply was modified 9 years, 5 months ago by Guenni007.
you don’t have to do that. I really don’t know why these psd files are in the zip file but for the wordpress theme to install you don’t need them.
Did you upload the enfold.zip via Dashboard/Themes Install ?
or do you mean – you uploaded it by ftp ?you could set background-positon to center center:
body.page-id-1605 { background: rgba(0, 0, 0, 0) url("http://www.joycewolthuis.nl/wp-content/uploads/2015/05/joyce-wolthuis-fotografie-0001.jpg") repeat scroll center center / cover ; }
and if you like you can use a transparent effekt on wrap_all:
.page-id-1605 #wrap_all { background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0; }
- This reply was modified 9 years, 5 months ago by Guenni007.
why do you want to do it with #main : try
body.page-id-1605 { background: rgba(0, 0, 0, 0) url("http://www.joycewolthuis.nl/wp-content/uploads/2015/05/joyce-wolthuis-fotografie-0001.jpg") repeat scroll 0 0 / cover ; }
and perhaps you take a little shadow for the font:
.page-id-1605 h2, .page-id-1605 span { text-shadow: 3px 3px 8px #333; }
- This reply was modified 9 years, 5 months ago by Guenni007.
could you please give us the link to the page where you tried to do so.
Edit:
ok i see the page id and the link is than:http://www.joycewolthuis.nl/portret/
- This reply was modified 9 years, 5 months ago by Guenni007.
i did it here on a test environment for me:
i gave a custom class to the color section (in my case its : background-img-responsive)
and color section is without no borderstyling but with huge padding
than goto quick.css and :.avia-section.background-img-responsive { background-size: cover !important; } .background-img-responsive.avia-section-huge .content { padding-bottom: 15% !important; padding-top: 15% !important; }
the paddings : you have to play with a little bit (important is that you have choosen “huge padding” for color section)
you can see the result here (on large screenwidth the overflow is as usual on the bottom.)
http://webers-testseite.de/enf02/color-section-background-image/
- This reply was modified 9 years, 5 months ago by Guenni007.
May 28, 2015 at 10:13 am in reply to: Beiträge werden angezeigt, man kommt nicht zurück auf die Hauptseite! #451054der Eintrag ist aber nur im Root index.php zu machen !
die index.php im Subdir ist unberührt. Ich würde dir auch ehrlich zu deinem Einfall raten, denn manche Plugins W3TC etc kommen schon mal mit solchen Dingen (htaccess eine Ebene höher) durcheinander.und das Teil im Subfolder lassen und nur die Domain dort hin delegieren kam nicht in Frage?
Ich mache das für Kunden häufig so, dass ich die neue Seite erstmal im Subdir installiere, damit man auch online was zeigen kann. Und wenn dann die Seite abgesegnet wurde schalte ich nur die Domain auf den Subfolder um. Da sind dann lediglich die beiden Verzeichnisangaben von
http://www.domain.de/subdir auf http://www.domain.de zu ersetzen.Im Falle eines Umzuges (auch auf andere Server) nutze ich jetzt selbst für Seitenumzüge auch innerhalb der Verzeichnisse Duplicator.
Wenn das auf deinem Server problemlos läuft, dann ist das ein geniales Tool.
Es generiert ein installer.php und ein zip-Archiv
Beides kann man dann am gewünschten Installationsort platzieren und den Installer ausführen.
Nach erfolgreichem Entpacken wird man gefragt nach der Neuen Datenbank; Passwörtern – ich glaube noch ob man direkt neue Benutzer anlegen will (oder einen neuen Admin anlegen möchte).In deinem Fall müsste man diese Beiden Dateien also erzeugen vom urspünglichen Install (also index.php noch im Verzeichnis)
Ich würde dann in deinem Fall eine neue Datenbank anlegen. Dann kannst du immer noch auf die andere Installation zurückgreifenthis is not a menu in that common way.
This site above you mentioned is a Site with no sidebar and with a 1/1 Element from Advanced Layout Builder – and in it the Tab Element.
All is set up manually ! not a dynamic Menu as you have it on Dashboard / Design / MenuesMay 27, 2015 at 1:19 pm in reply to: White space between the footer and the content that comes above #450547what i can not understand is that on your other sites there is the same gap without those nested empty difs !
as you can see the <div class=”main_color container_wrap fullsize”> goes not to the footer ???
big surprise ( an you can see that on webdeveloper tools there is no padding or margin defined
May 27, 2015 at 11:09 am in reply to: single post but on menu there is a site marked as active #450510thanks Josue – i decided to convert those post to portfolio posts.
And i will look if there is a possibility to get the concerning Menu-Item to be highlighted.Perhaps i will place the portfolio entries as submenu under the Menuitem and i will set this submenu to display none.
Can be closed – Thanks
Edit : Done ! have a look josue
- This reply was modified 9 years, 6 months ago by Guenni007.
May 26, 2015 at 5:07 pm in reply to: Beiträge werden angezeigt, man kommt nicht zurück auf die Hauptseite! #450192htaccess und gegebenfalls htpasswd gehören im Übrigen dann auch in das rootverzeichnis.
solltes du bei deinem Hoster auf einem WindowsServer die Seite haben gilt es noch etwas zu beachten! (punkt 7)
1. Ursprüngliche WordPress Installation war im Unterverzeichnis “wordpress”
2. Im Dashboard unter Einstellungen / Allgemein
3. In dem Eingabefeld für WordPress-Adresse gib ein http://example.com/wordpress
4. Im Eingabefeld für Seiten-Adresse gib ein : http://example.com
5. Klicke auf Änderungen übernehmen ( ignoriere die Fehlermeldung )
6. Gehe mittels ftp Programm zu deinem WordPress Ordner und
7. Kopiere – nicht verschiebe! Die index.php und die .htaccess-Datei in das Rootverzeichnis (Blog address).
Besonderheit bei WindowsServern : keine .htaccess sondern ein File : web.config
Diesen Verschieben nicht Kopieren!
8. Öffne die index.php des Rootverzeichnisses mit einem richtigen Texteditor (zb Wordpad++)
Ändere die folgende Zeile:
require( dirname( __FILE__ ) . ‘/wp-blog-header.php’ );
nach (unser Beispiel war ja „wordpress“:
require( dirname( __FILE__ ) . ‘/wordpress/wp-blog-header.php’ );
9. Logge dich nun auf der neuen URL ein. Also unter
http://example.com/wordpress/wp-admin/
10. Wenn du nicht die Standard Permalinks gesetzt hast gehe bitte noch zu Einstellungen/Permalinks und aktualisiere diese. Bei entsprechenden Schreibrechten des htaccess-Files schreibt WordPress diese dann korrekt hinein. Falls nicht musst du sie händisch eintragen ( die im Rootverzeichnis)- This reply was modified 9 years, 6 months ago by Guenni007.
May 26, 2015 at 4:56 pm in reply to: Beiträge werden angezeigt, man kommt nicht zurück auf die Hauptseite! #450181Du hast nur die index.php in das root gesetzt und der Rest befindet sich noch im Unterverzeichnis ?
Wenn dann musst du im Unterverzeichnis die ursprüngliche (default index.php) index.php haben und die index.php im Root so bearbeiten:
Öffne die index.php des Rootverzeichnisses mit einem richtigen Texteditor (zb Wordpad++)
Ändere die folgende Zeile:
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
nach (hier ein Beispiel mit dem Unterverzeichnis: „subdir“):
require( dirname( __FILE__ ) . '/subdir/wp-blog-header.php' );
Im Dashboard dann bei Einstellungen:
WordPress-Adresse auf http://website.de/subdir und
Seiten-Adresse auf http://website.de lassen.oder hast du nur die Domain auf das Unterverzeichnis verlinkt?
- This reply was modified 9 years, 6 months ago by Guenni007.
May 26, 2015 at 4:45 pm in reply to: White space between the footer and the content that comes above #450172i don’t know why but there is on your site a nested div Container between main and footer
have a look at your advanced layout builder if there is a 1/1 element set or something else
May 26, 2015 at 3:42 pm in reply to: single post but on menu there is a site marked as active #450131This reply has been marked as private.May 25, 2015 at 8:20 am in reply to: single post but on menu there is a site marked as active #449414ok i see the point : i set up that highlighted Page as the Blog Page (Enfold Options: “And where do you want to display the Blog?”)
isn’t it possible to set up a current-menu-item indivduell for each category.
the point is that i have in main-nav Sites and on these sites there are links to single posts with defined category.
f.e. a category : “team” (i don’t want the category as menu-item; i want the styling options from alb on sites) so the links to the Team-Members single Post go from a Site calles “Our Team”May 24, 2015 at 7:11 pm in reply to: is it possible to use entypo icons with pseudo class :before and :after #449261ok i found it
so you have to know the number in your custom font (or entypo font)
and f.e.a.extlink::after { content: " \e801"; font-family: "entypo-fontello"; font-size: 12px; vertical-align: top; }
so i gave to these links which i should mark with it a class : .extlink and then it works
the backslash was the thing i don’t know :wink
ah – btw i set up container max-height to 70vh (means 70% viewport height)
- This reply was modified 9 years, 6 months ago by Guenni007.
boa had choosen the header: header center menu below
than header_main_alternate comes by default.
you than can go to your menu and for home link you can set the following (but you first have to go to WordPress options dialog on Menu Site and make Classes and Description visible) look to the screenshot.
http://abload.de/img/headerqlrwr.jpg
on angezeigter name ( sorry i have the german WP installed) you can set an img link to your logo
and when you have done that give us please a link to help you more
The rest is css ( even the mobile
-
AuthorPosts