Forum Replies Created
-
AuthorPosts
-
if you look at the source code the pricing tables aren’t real tables they are unordered lists
each column of a pricing table got his own ul – so it must be possible to select them via nth-child option f.e..pricing-table-wrap:nth-child(2) { color: #009; font-weight: bold; }
BUT
the rules to colorize the prizing tables are set through enfold the same way – and i think quick css does not overwrite these rules accept we set those rules to default color first.
If you don’t like to change every table on your site it is best to give the pricing table you want to change a custom class f.e. rawtable
than you can set the font colors to default to have the chance to change them:.main_color .rawtable .pricing-table > li:nth-child(2n) { color: inherit !important; }
after that you can change color of font (headings have their own rule – so from this it is not touched)
.rawtable .pricing-table-wrap:nth-child(1) { color: #900 !important; } .rawtable .pricing-table-wrap:nth-child(2) { color: #090 !important; } .rawtable .pricing-table-wrap:nth-child(3) { color: #009!important; }
if you have more than a few columns and want to change f.e. every second column :
.rawtable .pricing-table-wrap:nth-child(2n) { color: #090 !important; }
-
This reply was modified 8 years, 9 months ago by
Guenni007.
September 21, 2016 at 5:22 pm in reply to: Create a form for users to add their names- then display names in a list #689940seems to be a bit like a booking system – and events calendar has one.
So you can present a calendar on which (if the members are logged in) they can enter their names. The calender solution has one big advantage – you don’t need to erase the list week by week – you can show f.e. only the running Month and so on.
I suppose that could be a solution for youbut only from this thread here: https://kriesi.at/support/topic/appearance-portfolio-categories/#post-689486
Vorteil zu dem bei der Script Lösung – du kannst auch gleich noch den Shrinking amount einstellen:
Auf der Seite oben habe ich zB von Hälfte auf Drittel eingestellt.Wenn man diesen Shrink Amount nur bei kleinen Screens haben will kann man das via Css auch ermöglichen
wie gesagt das kleine script von Josue ermöglicht am ipad das shrinken. Also beim runterscrollen geht das auf die 80px oder so an höhe zurück.
Du kannst das auf meiner Seite sehen – scroll mal am Ipad : http://webers-testseite.de/ikomBei dem Anderen wüsste ich jetzt nicht adhoc eine lösung.
PS: wenn das im Content beim scrollen der gleiche Hintergrund kommt wie im Header – meinst du es sähe besser aus, wenn der Header einen kleinen Schattenwurf bekommt? sonst verschwinden die Übergänge so oder?
#header_main { box-shadow: 0 2px 5px #666; }
-
This reply was modified 8 years, 9 months ago by
Guenni007.
Du willst das der wegscrollt ?
muss gehen !
wenn du nun die Navigation nicht so weit rechts haben willst, dann
#header #header_main .container { padding-right: 30px !important; max-width: 100% !important; width: 100% !important; } #advanced_menu_toggle { right: 30px; top: 70%; }
das paddding-right mit 30px halt varieren und das mit dem Toggle ist damit das nicht so hüpft wenn es umspringt und in etwa auf der Höhe von der Navigation ist
nur diesen Code hier sehe ich in deinem CSS nicht (30% scheinen bei dir zu reichen):
.av-main-nav > li > a > .avia-menu-text, .av-main-nav li#menu-item-search [data-av_icon]::before { bottom: -30%; position: relative; }
Auf dem Ipad musst du dem Link oben folgen. Josue schrieb mir mal ein kleies Script, dass das Shrinken auf dem Ipad wieder möglich machte.
Musst du in der functions.php des Child-Themes dann als custom script einfügen.machen wir mal deutsch weiter – ist auch für mich leichter:
hast du den link gesehen: http://webers-testseite.de/ikom
wie gesagt ich hatte es jetzt mit -23% so eingestellt, dass die Pfeile des Logos auf die Navigation zeigen
wenn Du da wieder -35% einträgst ist es bei 200px header der Boden (ich stelle es mal auf -35% zurück im Beispiel-Link).Wenn du den Screen mal schmal machst, und das menu togglest, dann ist da auch das logo drin.
Damit mein Code oben greift, müsstest du allerdings erstmal das was du bisher versucht hast verwerfen. denn der Code oben reicht völlig aus, um auch das Shrinken mitzunehmen.
Der zeite Code ist nur dafür da, dass du links neben dem Logo nicht auch noch ein graues Feld hast.
#header #header_main .container { padding-right: 30px !important; max-width: 100% !important; width: 100% !important; } #advanced_menu_toggle { right: 30px; top: 70%; }
-
This reply was modified 8 years, 9 months ago by
Guenni007.
another hint if you set it to:
.av-main-nav > li > a > .avia-menu-text, .av-main-nav li#menu-item-search [data-av_icon]::before { bottom: -23%; position: relative; }
the navigation is on the level of the two arrows of the logo – looks nice too
and if you like to have the logo (the yellow background full left)
#header #header_main .container { padding-right: 30px !important; max-width: 100% !important; width: 100% !important; } #advanced_menu_toggle { right: 30px; top: 70%; }
what did you do to have the nav points on bottom ?
i only did the following: logo left menu right – shrinking header: and
.av-main-nav > li > a > .avia-menu-text, .av-main-nav li#menu-item-search [data-av_icon]::before { bottom: -35%; position: relative; }
thats enough – but you have to get rid of the other settings you did til now:
see here : Link
btw: the shrinking header did not work on default on ipads : Solution see here from Josue
you have to upload a js-file into your child-theme js folder and add a code snippet to child-theme functions.phpthe break-point of main-menu and mobile-menu is set by enfold options to 768px(only Mobile) or 990px (tablets too)
sometimes (if logo should be greater than usual or to many first level navigation entries) it might be better to break earlier; the code i used for that is:
@media only screen and (max-width: 1280px) { .container #advanced_menu_toggle, #advanced_menu_hide { display: block; } .main_menu .avia-menu, #header_main_alternate, .fallback_menu { display: none; } }
but here i see that wrap_all is generally set to display relative: http://kriesi.at/documentation/enfold/switching-to-mobile-menu-on-higher-resolutions/ and if i view it right it is outside the media querry instruction:
#wrap_all { position: relative !important; } @media only screen and (max-width: 1140px) { .container #advanced_menu_toggle, #advanced_menu_hide { display: block; } .main_menu .avia-menu, #header_main_alternate, .fallback_menu { display: none; } }
You have to play with that 1140px value another possibility is what Yigit says to reduce the padding left/right of the listpoints too
What kind of header did you choose there logo left menu right ? – and it has to shrink?
-
This reply was modified 8 years, 9 months ago by
Guenni007.
be aware that the wildcard * is there – otherwise only root (landing page) works.
on some pages the http Domains must be verified by Google
btw: nice Maintenance Mode on your Site – what plugin is it ?
and the better question is – how did you integrate the login in that way ?
perhaps you do it in a 1/4 3/4 columns greetings
schöne Grüße in die Schweiz#top .av-magazine-top-bar { border-bottom: medium none; float: left; width: 30%; } .av-magazine-sort { float: left; } #top .av-sort-by-term a { display: block; float: none; } #top .av-magazine-group { clear: none; display: block; float: left; width: 70%; } #top .all_sort_button.active_sort { display: block; float: none; } .text-sep { display: none; } .av-magazine-group.av-hidden-mag { clear: none; float: left !important; }
-
This reply was modified 8 years, 9 months ago by
Guenni007.
aha – from your site i see that this is not a masonry – it is a magazine
this will be nice to knowso i will have a look (thats why a link to your site is a nice thing)
yes strong has its own rule so we than had to set a rule similar to
.nolinkcolor a { color: inherit !important; }
September 20, 2016 at 3:12 pm in reply to: on Mega Menu show in front of list points the featured image #689309you rock !!!
the rest is css – Result see in private content so far on a test environment
-
This reply was modified 8 years, 9 months ago by
Guenni007.
and you have done the custom class on the table?
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
did you realy read all i wrote on thread before?
see result here – allthough there is a link on contact it is red font color and to show that there is a link after the link an icon (you don’t need that – but how should visitors know that there is a link if no difference between the other table element is seen)
and – by the way for those fine lines of that logo – try to use svg instead.
http://webers-testseite.de/elegant/beispiel-seite/just drag&drop the svg to your desktop.
The only thing you have to think of is to setup for the svg a width and height otherwise it is set to 1px/1px
so you have a link on those Twitter … ?
by default an inline css should overwrite all styles – but try please first with important:
<p style="text-align:left; color:#a81010 !important"><span>CONTACT</span> <span>FACEBOOK</span> <span>TWITTER</span></p>
edit : does not work so
give the table a custom class f.e. nolinkcolor and than via quick css
.nolinkcolor a { color: inherit !important; }
and to make it visual that there is a link you can show an icon after those links:
.nolinkcolor a::after { content: " \00a0 \e822"; font-family: entypo-fontello; }
-
This reply was modified 8 years, 9 months ago by
Guenni007.
did you use copy paste from f.e. word ? because it seems that there is something with your quotes not working.
Try inserting this:<p style="text-align:left"><span style="color:#a81010">CONTACT</span> <span style="color:#a81010">FACEBOOK</span> <span style="color:#a81010">TWITTER</span></p>
by the way – this should work as well:
<p style="text-align:left; color:#a81010"><span>CONTACT</span> <span>FACEBOOK</span> <span>TWITTER</span></p>
to your question if you only want to make one word in a different color – the inline css method is best
if you have this very often – you can create a custom class for it like :.red { text-transformation: upperclass; color: #a81010; letter-spacing: 1px; }
than you only have to do:
<p class="red"><span>contact</span> <span>facebook</span> <span>twitter</span></p>
if you have to colorize all in that table or only every 2nd, 3rd etc field there are selectors which might help (nth-child selectors)
hey a new feature – i did not recognized it til now. And the fix works well – thanks Josue
if you have a lot of menu list first level entries or long terms – so that there is not enough place for the menu-list-points before it goes to mobile view – we had to find different settings
sorry the search has to be thought of:
.av-main-nav-wrap ul#avia-menu { display: inline-flex; left: 50%; position: relative; transform: translate(-50%); width: auto !important; } #menu-item-search { float: left !important; }
And why do you choose this in enfold options?
On Enfold Options / Header / Header-Layout there is the possibility to choose Logo center menu below.Or do you want to have the logo left – menu below but centered ?
Try this in quick css:
.av-main-nav-wrap ul { display: inline-flex; left: 50%; position: relative; transform: translate(-50%); width: auto !important; }
-
This reply was modified 8 years, 9 months ago by
Guenni007.
schau mal ob das reicht:
#advanced_menu_toggle { right: 10px; top: 60px; } #advanced_menu_hide { border: 2px solid #ecc544; right: 60px; top: 60px; }
warum da plötzlich Prozentangaben waren weiss ich nicht
wenn du es natürlich nur unterhalb einer gewissen Screenbreite willst musst du noch media querries hier setzen.
@media only screen and (max-width: 768px) { #advanced_menu_toggle { right: 10px; top: 60px; } #advanced_menu_hide { border: 2px solid #ecc544; right: 60px; top: 60px; } }
-
This reply was modified 8 years, 9 months ago by
Guenni007.
if you want it more specific – set up a custom class to the Masonry
and for small screen you have to adjust
@media only screen and (max-width: 479px) { #top div.container .av-masonry .av-masonry-sort { float: left; width: 98% !important; } }
-
This reply was modified 8 years, 9 months ago by
-
AuthorPosts