Forum Replies Created
-
AuthorPosts
-
Edit: 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, 9 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, 9 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, 9 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, 9 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, 9 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, 9 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, 9 months ago by
Guenni007.
Results: http://webers-testseite.de/ikom/columns/
The alb element headline has got his own custom class (here: headline-background ).headline-background * { letter-spacing: 2px !important; line-height: 60px; } .headline-background span { background: rgba(255, 255, 255, 0.7); box-shadow: 2px 2px 3px #333; border-radius: 15px; padding: 5px; }
the first rule: everything following that custom class gets the attributes ( so h2 in this case and the span)
the second rule : only the span contentPS : i styled it a bit more that you can see how it works – if you only want to have black background with white font-color – you know what to do.
-
This reply was modified 8 years, 9 months ago by
Guenni007.
it will be much easier to help if there was an example page – if you don’t like to post the live site link on public than only mods could help you. Or is there a Site on Enfold Demo Pages where the analogon is placed?
f.e. http://kriesi.at/themes/enfold-wedding/ the heading therefirst of all the source code has to be in this way that you can make a selection between first line and after break the second line.
Because html works in headings of enfold you can do the following to obtain a two line heading:first line<br/>second line
but to make it easier to differ this might be a good source for that:first line <br/><span>second line</span>
this will be enough but to shorten sometimes the code in your quick css it might be good to have here
for the whole heading a custom class f.e. headline-background-
This reply was modified 8 years, 9 months ago by
Guenni007.
hm – isn’t it the same code as mine?
only the filter name differs
avia_same_category_filter instead of enfold_customization_same_cat
and
$settings instead of $s-
This reply was modified 8 years, 9 months ago by
Guenni007.
you have to work with media querries:
f.e.
@media only screen and (min-width: 989px) { .mobile-slider { display: none; } }
so this slider is not shown if the screen width is more or equal to 990px
you have to decide the split point for that – if the split point is 768px
@media only screen and (max-width: 767px) { .desktop-slider { display: none !important; }} @media only screen and (min-width: 768px) { .mobile-slider { display: none !important; }}
max and min width if it is above 768px the one is shown the other is not
if it is beneath 768 vice versa – thats alland what do you want to colorize now?
erase my code above and put in f.e.:
.forsikring_priser .pricing-table-wrap:nth-child(2) .pricing-table li:nth-child(4) { color: #f00; }
you see how it works
this was the 2nd column and in that 2nd column the 4th list pointand :
.forsikring_priser .pricing-table-wrap:nth-child(3) .pricing-table li:nth-child(3) strong { color: #63b5be !important; }
without strong – the stong rule would not be overwritten
so 3rd column 3Listpoint (and strong to overwrite here the general strong rule)also auf dem Ipad mit Retina Display ist die kleine weisse Linie da ?
Keine Ahnung wo die herkommt.September 22, 2016 at 5:26 pm in reply to: Enfold 3.8 Icons not showing/bugged – Still an issue #690351but the screenshot on the left shows some chinese Icons.
some texteditors have a lot of invisible meta informations – and are not able to save a file without a filetype and a file extension !
On Mac i use Sublime Text (on PC notepad ++)
and your htaccess is after uploading again set to invisible by that little dot infront of that file ( .htaccess )-
This reply was modified 8 years, 9 months ago by
Guenni007.
ich habe das Problem im Safari 10 / El Capitan nicht!
aber wie gesagt, Du musst ja nicht das Bild genau 1500px groß machen ! Lege doch mal bitte eines mit 1510px bereit und nimm dann original sizeEdit: wenn ich im Safari vergrößere mit (früher) apfel + und das ein zweimal – dann habe ich da auch einen winzigen weissen streifen.
Aber bei 100% Vergrößerung nicht !-
This reply was modified 8 years, 9 months ago by
Guenni007.
hm – did you have a link for us.
Fullscreen Slider has no option with video ?try it with no scaling images – it seems to be only a few pixels – sometimes f.e. cropping tool of photoshop did not work pixel precise – sometimes a 1499px Image is saved allthough you have made for the crop tool the right input.
-
This reply was modified 8 years, 9 months ago by
Guenni007.
just a moment – to clarify what you want.
You want to show the sites of your website as a list in your Footer – but you have too many sites – so that the list is too long?
First of all – you don’t need to show a sites list. This is a default setting if the footer widgets are empty.
To split the list i think is not possible by default.If you do intentionally drag&drop the pages list there f.e. in the first column there is first a sort option (via ID or page title etc.) and than (for you ) the possibility to exclude some pages from the list. So exclude the second half – and on Column 2 exclude the first half of your site list
– but you have to know your Page-IDs for that.In Dashboard on Pages List you can see the ID by hovering the page – there is at the left bottom corner of your browser-window than a link with the ID of the post. (On Safari not – but Firefox, Chrome, Opera etc. did)
-
This reply was modified 8 years, 9 months ago by
Guenni007.
September 22, 2016 at 12:17 pm in reply to: Enfold 3.8 Icons not showing/bugged – Still an issue #690213And you are definitly on an apache server? The htaccess file exists before and you put in that additional code?
How did you do that? Downloading that file – renaming it – editing (on a good texteditor (wordpad ++ or sublimetext), ! not word or something like that please) – rename it again – and upload it ?Where does that icon font come from?
Thanks
Thanks – i’m a participant here too – but i could help you because your nick here on board and a bit of google – helped me to find your site.
aha no the display block is in it from copy paste : remove the display: block rule from #top .av-magazine-group:
#top .av-magazine-group { clear: none; float: left; width: 70%; }
the display option and opacity option come from a script i think – and i pasted my changings inclusive this setting – my fault – sorry
thats it !but nevertheless i think 1/4 3/4 will be nicer on that – because “Dienstleistung” “Kaufmännisch” etc are short enough to make that column a bit smaller
-
This reply was modified 8 years, 9 months ago by
Guenni007.
no – no hack at all.
Meanwile all browser got a kind of developer tools. But i like the first tool in that manner it is called firebug (Firefox Plugin)
On that you can f.e. right click on a heading and choose from context-menu “investigate with firebug” a second window opens and shows you the sourcecode and the concerning css code / the DOM / or script-elements
On that little tool it is possible to simulate f.e. any css changing you want and the screen from firefox shows the changings made for that.
So no live hack – it is a simulated Change with screen control.To your Problem now.
for some reasons i had to set up the clearing to none . Perhaps this is the reason for double content.
The construct is very strange because the content is there twice ( on klick to a group the all content goes to invisible – look to the source code:<div class="av-magazine-group sort_all" style="opacity: 1; display: block;">… <div class="av-magazine-group av-hidden-mag sort_58" style="opacity: 0" display: none;"> … <div class="av-magazine-group av-hidden-mag sort_45" style="opacity: 0; display: none;">… <div class="av-magazine-group av-hidden-mag sort_44" style="opacity: 0; display: none;">…
you see how the sorting works – clicking on all the first div with all is visible – the rest is display: none
so there is twice content because all and for each group once!Try to change first that f.e.
#top .av-magazine-group { clear: right; display: block; float: left; width: 70%; }
if this is not the solution please remove all clearing rules and than i will have a look with my firebug to solve it.
no this is not a “template” in a real way. It is a snapshot of the status quo. So if you put another image in that slideshow, the others are untouched.
All Headings in your footer looks the same here (Mac Safari, Firefox, Chrome) Same Font, Color and font-size.
-
This reply was modified 8 years, 9 months ago by
-
AuthorPosts