Forum Replies Created

Viewing 30 posts - 9,721 through 9,750 (of 10,888 total)
  • Author
    Posts
  • in reply to: Appearance Portfolio Categories #689482

    aha – from your site i see that this is not a masonry – it is a magazine
    this will be nice to know

    so i will have a look (thats why a link to your site is a nice thing)

    in reply to: Style text in a table #689479

    yes strong has its own rule so we than had to set a rule similar to

    .nolinkcolor a {
        color: inherit !important;
    }
    in reply to: on Mega Menu show in front of list points the featured image #689309

    you rock !!!

    the rest is css – Result see in private content so far on a test environment

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Style text in a table #689241

    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)

    http://webers-testseite.de/elegant/table-with-links-inside/

    in reply to: Hamburger Menu Color Enfold 3.8 #689097

    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

    in reply to: Style text in a table #689070

    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, 2 months ago by Guenni007.
    in reply to: Style text in a table #689028

    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)

    in reply to: Move content over a slider like a "curtain" #689024

    hey a new feature – i did not recognized it til now. And the fix works well – thanks Josue

    in reply to: centering the main menu #688797

    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

    in reply to: centering the main menu #688784

    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;
    }
    in reply to: centering the main menu #688770

    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, 2 months ago by Guenni007.
    in reply to: Hamburger Menu Color Enfold 3.8 #688633

    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, 2 months ago by Guenni007.
    in reply to: Appearance Portfolio Categories #688571

    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;
    }
    }
    
    in reply to: Appearance Portfolio Categories #688563

    try this here:

    #top .av-current-sort-title {
        float: none;
        text-align: left;
    }
    
    #top .av-sort-yes-tax .av-sort-by-term, #top .av-sort-yes-tax .sort_by_cat {
        float: left;
    }
    
    .av-masonry-sort a {
        display: block;
        text-align: left;
    }
    
    .text-sep {
        display: none;
    }

    maybe it is possible to get the masonry aside to that list. But i have no test installation with that constuction

    try this here:

    #top div.container .av-masonry .av-masonry-sort {
        float: left;
        clear: none;
        width: 18% !important;
    }
    
    .av-masonry-container.isotope {
        clear: none;
        float: left;
        position: relative !important;
        width: 80%;
    }
    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: 3.8 – Diagonal Section Border #688540

    hm let me see.…

    the option for that in the alb element says:

    Section Bottom Border Styling
    Chose a border styling for the bottom of your section

    so it is not the top of the next section – but the bottom of the edited section
    and on that reason the color should be the background-color of the following section

    in reply to: Hamburger Menu Color Enfold 3.8 #688434

    da gab es einen anderen Thread hier mit der Frage – wart mal schaue gerade wo der ist:

    https://kriesi.at/support/topic/menu-style-the-burger-icon-menu/#post-685580

    je nach Logo Seitenverhältnis muss man das natürlich noch optimieren. Und die Werte dann entsprechend ändern

    in reply to: Warnings concerning htmlspecialchars "utf8" #688430

    this is a strange url because a folder with dot in front is invisible – isn’t it: /home/.sites/208/site579/web/…
    is it for your provider normal on the absolute path?

    in reply to: Layerslider button #688389

    create a new text layer – edt transitions (from right to center or something else) – and here we go : edit Link & Attributes
    if the button has to have hover states it will be nice to have here a class (f.e. slider-button)

    see that little test here: Link

    in reply to: Hamburger Menu Color Enfold 3.8 #688162

    Try this here:

    .av-burger-overlay-inner, .av-burger-overlay-bg {
        background: #fff url("/wp-content/uploads/2015/07/laptop-white.jpg") no-repeat scroll 0 0;
    }
    
    .av-burger-overlay-active #top .av-hamburger-inner, .av-burger-overlay-active #top .av-hamburger-inner::before, .av-burger-overlay-active #top .av-hamburger-inner::after {
        background-color: #000 !important;
    }
    
    #av-burger-menu-ul li a {
        color: #000 !important;
    }

    you see that a background-image is possible too !

    Result see here: Link

    in reply to: Avia Post NAV with the same category #688155

    by the way i got this code for me to work well:

    add_filter( 'avia_post_nav_settings', 'enfold_customization_same_cat' );
    function enfold_customization_same_cat( $s ) {
        $s['same_category'] = true;
      return $s;
    }
    in reply to: need to change the background of event #688153

    it is hard to say something on it without a link to that site. If there is one in private area than you have to wait on mods to answer you.

    in reply to: How to disable modal lightbox only on one page #688152

    you create a folder “js” in your child-theme folder (via ftp)
    the modified avia.js comes to that folder (you can leave the orginal avia.js in the folder enfold/js/ untouched because the entry in the child-theme functions.php is for loading the new one and not the original one of parent theme.

    in reply to: Replace .postid-300, .postid-301… by ".all-my-portfolio" #688089

    what about

    .single-portfolio .avia-slideshow li img {
    width:auto;
    height:450px;
    }
    
    .single-portfolio img.avia_image {
    width:auto;
    height:450px;
    }

    or as long the values are identical to each other:

    .single-portfolio .avia-slideshow li img, .single-portfolio img.avia_image {
    width:auto;
    height:450px;
    }

    by the way if you having same problem for normal posts you can take single-post or if values are the same take single

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Media Quries #688087

    To your point 2) now we have this hamburger – menu if one likes to have it
    on that i have to look how to get the logo in that menu –
    but on the old offcanvas Navigation there is this code to quick css :

    #mobile-advanced {
    	background-image: url("path to your logo"); 
    	background-position: left top; 
    	background-repeat: no-repeat; 
    	background-size: 75% auto; 
    	padding: 20% 0 !important ;
    }

    depending on your logo – you have to set up different size and padding – values !

    if you want to have your logo on the hamburger menu simply insert the home link twice to your menu and fill in the navigation label of the first one the image link (f.e.: <img src="/wp-content/uploads/Logo_white.png" alt="wpwdweiss" width="400" /> )
    it is best to have here an alternative Logo (as on transparent option) that has good contrast to the dark background.

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Media Quries #688086

    To your point 3 try this in quick css (you have to set up your own colors)

    @media only screen and (max-width: 767px) {
    .responsive #top .avia-post-nav { display: block }
    #top .avia-post-next {background:none repeat scroll 0 0 rgba(255,50,50,0.6);top: 65%}
    #top .avia-post-prev {background:none repeat scroll 0 0 rgba(50, 100, 255,0.6);top: 65%}
    #top .avia-post-nav {height: 60px;margin-top: -55px;padding: 15px}
    .avia-post-nav .entry-info-wrap {margin-top: -11px}
    .avia-post-nav .entry-info {height: 50px;width: 180px}
    .avia-post-nav .entry-image {height: 50px;width: 50px}
    .avia-post-nav .entry-info span {display: table-cell;font-size: 13px;line-height: 1.3em;vertical-align: middle}
    .avia-post-nav .entry-image img {display: block;height: auto;width: 50px}
    .avia-post-nav:hover .entry-info-wrap {width: 200px}
    }

    i did change the height too – because on mobile it looks strange if those navigations are on normal height.

    btw: if you want to change the direction (previous is to the left – next is to the right side) add this to child-theme functions.php:

    add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); 
    function enfold_customization_postnav($entries, $settings) {
        $entries['prev'] = get_next_post($settings['same_category']);
        $entries['next'] = get_previous_post($settings['same_category']);
        return $entries;
    }
    in reply to: on Mega Menu show in front of list points the featured image #687678

    yes – see private content

    • This reply was modified 8 years, 2 months ago by Guenni007.

    Ich finde die Idee mit den Tags (Schlagworten) eigentlich am besten (die kann man im übrigen auch per quickedit setzen/ändern in der Portfolio Liste) – da verzettelt man sich nicht so, denn es könnten auch Überbestimmungen stattfinden die sich widersprechen.
    Also zB is_page(‘5’) und has_tag(‘grün’) könnten sich ja widersprechen.

    das deine obere Anweisung funktioniert wunder mich! das sind zwei if (geschachtelt auch noch drin)

    hier erkennt man auch den Aufbau und die Logic besser:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
    		  if 	 ( is_singular( 'portfolio' ) ) 	{$logo = "/wp-content/uploads/logo/rot.png";} 
              elseif ( is_single( 'titelform-gelb' ) )  	{$logo = "/wp-content/uploads/logo/gelb.png";} 
              elseif ( is_single( 'titelform2-gelb' ) ) 	{$logo = "/wp-content/uploads/logo/gelb.png";} 
              elseif ( is_single( 'titelform3-gelb' ) ) 	{$logo = "/wp-content/uploads/logo/gelb.png";} 
              elseif ( is_single( 'titelform-gruen' ) ) 	{$logo = "/wp-content/uploads/logo/gruen.png";} 
              elseif ( is_single( 'titelform2-gruen' ) )	{$logo = "/wp-content/uploads/logo/gruen.png";} 
              elseif ( is_single( 'titelform3-gruen' ) )	{$logo = "/wp-content/uploads/logo/gruen.png";} 
              return $logo;
    }
    

    die erste Anweisung macht alle Portfolio Beiträge mit dem roten Logo
    die nächsten Drei waren daher überflüssig, da die ja ohnehin ein rotes Logo hätten
    hier bei der Aufstellung sieht man besser wie das mit den elseif geht und wo Klammern auf und zu gehen.

    um Gottes Willen das Gruen und foo sind nur beispiele

    Du musst natürlich deine vergebenen Schlagworte benutzen.
    Die kannst du jedesmal wenn du für eine neue Seite ein anderes Logo brauchst rechts im Editor eingeben !
    Da war mein Vorschlag dann Logo1, Logo2 etc. zu verwenden, dann kommst du auch nicht Durcheinander !!!

    vielleicht erkennt man es so besser: (und has_tag is eine eigene Geschichte hat mit page nur bedingt was zu tun)

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
                      if	( has_tag('logo-rot')) 		{ $logo = "/wp-content/uploads/logo/rot.png";} 
    	    elseif 	( has_tag('logo-gelb'))  	{ $logo = "/wp-content/uploads/logo/gelb.png";} 
    	    elseif 	( has_tag('logo-gruen'))  	{ $logo = "/wp-content/uploads/logo/gruen.png";}
    	    return $logo;
    }

    Das Tag (Schlagwort) musst Du dann aber auch immer vergeben, dort wo du es ändern willst.

    • This reply was modified 8 years, 2 months ago by Guenni007.

    has_tag(‘logo1’) funktioniert aber und macht es ja sehr einfach. Einfach jedem Teil was das logo1 erhalten soll das Schlagwort “logo1” zuordnen

    edit: sorry sehe oben ich habe is_tag verwendet – das ist natürlich quatsch (scheibenkleister wenn man sowas aus dem Kopf heraus niederschreibt)

    also has_tag( )

    is_tag() returns true if you’re viewing a tag archive page. has_tag( ‘foo’ ) returns true if the current post has the tag “foo”.

    • This reply was modified 8 years, 2 months ago by Guenni007.
Viewing 30 posts - 9,721 through 9,750 (of 10,888 total)