Forum Replies Created
-
AuthorPosts
-
Dashboard – Enfold (or Enfold Child) – Header – Extra Elements – Header Phone Number/Extra Info ( choose left or right as you like it)
maybe this seems to be better: https://wordpress.org/plugins/force-regenerate-thumbnails/
PS: WordPress itself reduces by default all images (maybe it is only jpg) to 90% Quality (not size) – if you don’t like that – because all images are optimized perfectly than you can add the following to functions.php:
add_filter( ‘jpeg_quality’, create_function( ”, ‘return 100;’ ) );
well to me it works nice – but you have to know that this will only have an effect for newly (after that functions.php entry) uploaded Images !
But if you want that every image in your media library gets the new format than there are some nice plugins to solve this with one klick (Regenerate Thumbnails f.e.)hm ok than here is the site specific rule . (with a custom class on that icon it will be not so complicated)
btw custom class activation look here – this is a nice add for enfold because you can give nearly to all alb (advanced layout builder) elements a custom css class) read here for custom class :paste it to your quick css on enfold options
.page-id-3789 .av-icon-char[data-av_icon]::before { font-size: 60px !important; left: -12px; position: relative !important; } .page-id-3789 .av-icon-char { line-height: 25px !important; }
first of all it might be nice to have here a unique custom class for that icon – because the rules is easier to keep specific with that.
So please give it a class (maybe: “telecharger”) that i try to give you a piece of code which might help you .you can see here a reference : http://www.w3schools.com/cssref/css_selectors.asp
http://www.w3schools.com/cssref/sel_before.asp
these pseudo selectors are a mighty tool – and browser support is now very high
you mean something like this:
try to insert it into your quick css:#menu-item-3289 a::before { content: "\e805 \00a0 "; font-family: entypo-fontello; font-size: 20px; position: relative; top: 3px; } #menu-item-3287 a::before { content: "\e806 \00a0"; font-family: entypo-fontello; font-size: 20px; position: relative; top: 3px; } #menu-item-3288 a::before { content: "\e80a \00a0"; font-family: entypo-fontello; font-size: 20px; position: relative; top: 3px; }
btw: you should change font color of top nav :
#header_meta .sub_menu li a { color: #fff !important; }
i can not confirm your observation. To me it works perfekt here on firefox / maxosx
but on Chrome and a bit in Safari the logo is a bit upset – but shrinking is than ok too. (aspect ratio seem to be unchanged)does any other rule in your functions.php of your child-theme work?
maybe there is some closing instruction of the rules before missing.
add_filter or add_theme_support each ends with a “;”
a function does not! – so here is an example:add_filter('avf_logo_alt', 'avf_change_logo_alt'); function avf_change_logo_alt($alt) { $alt = "New Alternate Text Here"; return $alt; }
(btw. this is the method you can change the alt text of your Logo)
so you see add_filter with semicolon
function not after the bracketJuly 30, 2016 at 9:58 pm in reply to: Odd behavior – Footer link color different on one page #666900there has to be something messed up with your submenu.
footer was part of that container – and does not come after it.but i think it is solved now because now everything is fine
is this your output you want?
http://webers-testseite.de/ikom/or a little transparent:
.home #header_meta { background: rgba(0, 50, 150, 0.8) none repeat scroll 0 0 !important; }
the 0.8 are 80% Opacity
-
This reply was modified 9 years ago by
Guenni007.
sorry it sound a little bit like you are ordering a pizza quatro stagioni
– without : artichokes, tomatoes or basil, mushrooms and ham or prosciutto, or olives
– but with : four different kind of Cheese (quattro formaggi) :lol:try to explain:
home page: transparent header, top bar scrolling, sticky header, main-navigation: tansparent
other pages: no transparent header, top bar scrolls too, sticky header, top bar different background-color than navigation.
etc.if you don’t like to make a general changing you might better give this alb element on your page a custom class
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/f.e. : rotator-bg
than try to add to quick css :
#top .rotator-bg .av-rotator-container-inner { background: rgba(255, 255, 255, 0.5) ; border-radius: 100px; display: inline-block; padding: 30px; position: relative; text-align: center; text-shadow: 1px 1px 0 #fff; box-shadow: 2px 2px 4px #333 inset; }
there is a bit more styling in it to show you whats possible
see here in the green field: http://webers-testseite.de/ikom/neue-seite/
Centering the container :
.rotator-bg { text-align: center !important; }
Gerne – bis demnächst dann mal wieder in diesem Blog
try to explain more precise what you want to achieve.
Btw. it is much easier if we have your testing page.
The changings should only affect the homepage – everything is fine on your other pages with your actual settings ?
the transparency of #header_main_alternate in which the main navigation is placed is in the header container (at the bottom of the header container)
so if this main navigation including container is transparent the background color of header is visible. !you can try this:
.home #header_main_alternate { background: rgba(255, 255, 255, 0.5) ; bottom: -50px; position: relative; }
now the main nav sits under the header not over it. But does it realy look good?
look here if this is what you mean: http://webers-testseite.de/ikom/if you like to change the link than try this in your child-theme functions.php
add_filter('avf_logo_link','av_change_logo_link'); function av_change_logo_link($link) { $link = "http://kriesi.at"; return $link; }
if you only want to get rid of the klick action do this in quick css:
div .logo { pointer-events: none; }
try it in this way:
.header-scrolled #header_meta { background: #080 !important; }
the header-scrolled class is added at the end of the scrolling process – so this is i think what you want
the transparency of the top menu until scrolling comes to an end.maybe you have to make some rules for your listpoints in the top bar.
by the way – by using an rgba value you had the choice to make it a bit tranparent with a unique color:
.header-scrolled #header_meta { background: rgba(255, 150, 50, 0.5) !important; }
you can see it here: http://webers-testseite.de/ikom/neue-seite/
well you don’t need the id if you only want to show those three posts give them a special tag f.e. “myids” (:lol)
you can now take every alb element which gives you the opportunity to show instead of category the option “show customized taxonomy” and than choose not category but “post tag”July 26, 2016 at 12:23 pm in reply to: Hi, why are there many bugs on mobile device browsing? #665259mostly a missing bracket or semicolon and everything following is gone
if you like to select the category 17 and all products from category 17.
I don’t like to install a demo shop to help you – so you have to have a look for yourself.
if a single product is shown – doesn’t it have the product category too in his source code.
so when you selectis_product_category('17')
this does automatically even select all single products of that category?why don’t you use the secondary menu on that case.
Activate on Enfold Options – Header – Extra Elements
and choose secondary menu on top bar at the left.Now i think the flags goes by default to that secondary menu.
you can choose a background for header on enfold options and the behavior is like you want it on small screenssee here: webers-testseite.de/ikom
i think this is a clearing issue because widget li is clearing both.
Try this one here:#lang_sel_list li { clear: none !important; }
July 25, 2016 at 6:35 pm in reply to: How to remove White Space after setting Header to HIDE HEADER? #664750i think he has changed his design a bit :
http://musicstarmarketing.com/the featured image is that little image related to a page/post/portfolio which you set up on the right side of editing mode.
Where do you put in there a html code?
Or do you mean an advanced-layout-builder element – please describe your problem a bit more precise here.
is it the featured image slider alb element you mean?and if you don’t have choosen the minimal with dropshadow. You can set it on the class too:
.header-scrolled { border-bottom: 2px solid #090; box-shadow: 0 2px 5px #bbb; }
there is a class for the shrinking header if shrinking process comes to its end: header-scrolled so:
.header-scrolled { border-bottom: 2px solid #080; }
there is the login page to the wordpress backend. If you press under the form “Lost your password?” – did you than receive an e-mail from your wordpress installation?
you mean this littel button in my image above shown with the red arrow?
:lol:
if it has to be a comma in the url – try to use
%2C
tell me please how!
-
This reply was modified 9 years ago by
-
AuthorPosts