Forum Replies Created

Viewing 30 posts - 10,411 through 10,440 (of 11,480 total)
  • Author
    Posts
  • in reply to: Ajax Portfolio on Main Menu Link NOT WORKING #678862

    the link of mine above : ? is it what you want?

    http://webers-testseite.de/ikom/neue-seite/?custom_ajax=3142

    i understand the link to the help-site in this way:

    This snippet will allow you to create links to your portfolio ajax items and have one of them open up when the page is loaded.

    It opens the site in this way:
    http://webers-testseite.de/ikom/neue-seite/?custom_ajax=3142
    and not in that way (by default)
    http://webers-testseite.de/ikom/neue-seite/

    • This reply was modified 8 years, 10 months ago by Guenni007.
    in reply to: Ajax Portfolio on Main Menu Link NOT WORKING #678860

    btw. i’m a participant as you are here on board; but everyone here of the mods do the best they can – but your request from Friday – just before weekend ? have a little understanding that they have a private life too!
    Thanks

    in reply to: Ajax Portfolio on Main Menu Link NOT WORKING #678853

    aha – so i misunderstood your “popup” request.

    the thing is , that you have a page where a ajax portfolio is placed. On default there was no portfolio shown till you click one of those littel thumbnails beyond that portfolio.
    (this is similar to tab navigation accept there was the possibility to say which tab is opend when opening the page)

    You want that the page opens with a certain portfolio opend in ajax view!

    And here we are: the portfolios are not numbered 01, 02, 03 they got a unique ID .
    You can find out what id the portfolio has if you open it standalone – something like : …/wp-admin/post.php?post=3142
    is on your browserwindow – the 3142 is the ID

    and this ID is in the LInk above:
    http://www.yoursite.com/your_portfolio_page?custom_ajax=3142

    you can see it here in my testpage: http://webers-testseite.de/ikom/neue-seite/?custom_ajax=3142

    in reply to: Ajax Portfolio on Main Menu Link NOT WORKING #678792

    try this: http://www.yoursite.com/your_portfolio_page?custom_ajax=12?iframe=true
    as link

    by the way: where is that code from?

    • This reply was modified 8 years, 10 months ago by Guenni007.
    in reply to: 3 Days Old Question – Not Answered. #678785

    please try in your example of your link to add behind your link: ?iframe=true

    http://www.yoursite.com/your_portfolio_page?custom_ajax=12?iframe=true

    in reply to: Google font not loading properly from functions #678766

    the code above gives you only the chance of using it by activating the font on Enfold/… fonts

    if you do not choose the font on Enfold Options the font is still not activated!

    One easy way is to activate the font (if you don’t want it by default for all h2) to go to enfold/advanced styling/ and create a rule f.e. for h6 using this font. From than on you can use the font on quick css.

    in reply to: Search icon position above the menu #678696

    no problem –
    PS this is what my solution looks like: http://webers-testseite.de/circles/

    in reply to: Search icon position above the menu #678588

    This works – ok.
    But if you have a transparent header you have to find a solution (for scroll offset i think) because the color-section f.e. with background image is looking through header.

    maybe you give the code of mine above a chance. You only have to activate in Enfold – Header – Extra Elements

    1) the search icon in Navigation
    2) Position of Header social icons (you don’t have to have social icons here)

    function av_move_search(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery(".av-main-nav > li#menu-item-search").detach().appendTo('#header .social_bookmarks')
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'av_move_search');

    What is not so nice on that solution is
    there is a little time shift till the search icon list point is in the social-icon list but it has the right position from the beginning.
    Only a little css is needed to have the search results in that dropdown look good:

    .ajax_search_entry {
        text-align: left !important;
        min-width: 250px !important;
        padding-left: 15px !important;
    }
    • This reply was modified 8 years, 10 months ago by Guenni007.
    in reply to: Search icon position above the menu #678517

    or best josue – can’t we use like wpml does the do_action(‘avia_meta_header’); on helper-main-menu.php for a header_meta widget and put in a search field than?

    • This reply was modified 8 years, 10 months ago by Guenni007.
    in reply to: Search icon position above the menu #678510

    well – i tested it and if sub-menu is empty it does not work

    So it is not so easy without having other content there.
    If you got social profiles you can do the Yigit trick by shifting the search field to that field:
    But there has to be that little mark on: Append search icon to main menu
    and there has to be at least one social Profile.

    this in child-theme functions.php

    function av_move_search(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery(".av-main-nav > li#menu-item-search").detach().appendTo('#header .social_bookmarks')
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'av_move_search');
    in reply to: Concerning to this Board / Forum #678160

    thats a good idea – every first answer of mine will get a tag in this way. I didn’t see the wood for the trees :lol

    in reply to: Circular Icons (as on kriesi.at homepage) #677654

    And don’t tell Christian that i can copy his circles :)

    in reply to: Site hacked, please help, urgent #677635

    and ! use complex Passwords –
    alot of my customers have the name of there children or something very easy!

    Since i use 1password i use extrem passwords with 26 or more letters/signs/numbers

    in reply to: integration problem #677436

    sorry – me as a participant too – i’m now out.

    maybe the mods have an Answer for you – but se my comment above
    If you google to “is it good practice to use iframe”

    in reply to: Circular Icons (as on kriesi.at homepage) #677430

    OK

    • This reply was modified 8 years, 10 months ago by Guenni007.
    in reply to: Circular Icons (as on kriesi.at homepage) #677267

    One more on that: the left shift of the icons is a bit tricky – this is in dependency to caption length.
    If the length of the caption under the icon is to big the left position has to be corrected.

    I tried to place the av-icon-char in an absolute way (only the circles with the icon) but than positioning of the caption is not possible.

    in reply to: integration problem #677196

    the code i gave you was site-specific ! so if you take this one the rules will work for all code-block / iframes:

    .avia_codeblock {
        height: auto;
        padding-bottom: 65vh;
        position: relative;
        width: 100%;
    }
    
    .avia_codeblock iframe {
        height: 100% !important;
        left: 0;
        position: absolute;
        top: 0;
        width: 100% !important;
    }

    if you like to put the iframe in a widget use a text in the widget and place the iframe code in that container:

    <p class="iframe_container">
    <iframe src="http://www.novafriburgoacidadequequeremos.com.usrfiles.com/html/cee4aa_e5e645abd11a757393a6c5b9893d821b.html" width="100%" height="100%" scrolling="no"></iframe>
    </p>

    than you can place as allways:

    
    .iframe_container {
        position: relative;
        padding-bottom: 65vh;
        height: auto;
        width: 100%;
    }
    
    .iframe_container iframe {
        position: absolute;
        height: 100% !important;
        width: 100% !important;
        left: 0;
        top: 0;
    }

    see here: Link

    the reason why i did it in a text-block was the possibility to use widgets too

    bytheway : its because iframes are allways difficult.
    If you google to “is it good practice to use iframe”
    there are tonns of lists where this point is discussed. From the point of seo as well. Performance Reasons too!
    To have one or two the whole Site seems to be ok ( on youtube there is no other way)

    • This reply was modified 8 years, 10 months ago by Guenni007.
    in reply to: Need my logo to look like a certain site #677026
    in reply to: Using OpenType font file #676974

    are they free or payed font files ?

    The reason why i ask this is because there are some sites which can make webfont files out of that:

    https://www.fontsquirrel.com/tools/webfont-generator

    in reply to: Circular Icons (as on kriesi.at homepage) #676919

    Please take the new code because i put it on math basis – declaration see here : link

    in reply to: Behavior of menu on mouse over – time delay #676704

    yes i will give it a try. But this is a bit to mighty and so complicated.

    see here – but i do not found a solution now for enfold menu :

    https://css-tricks.com/dropdown-menus-with-more-forgiving-mouse-movement-paths/

    that is what i want

    in reply to: Changing default thumbnail for blog posts #676703

    by the way i noticed that safari does not support content: url()
    so i would now prefer the background solution !

    in reply to: Concerning to this Board / Forum #676701

    Can you please move that question to FAQ if it is on interest. Else remove the thread

    in reply to: Silbentrennung #676697

    na immerhin habe ich auf Grund deiner Anfrage das nette Plugin gefunden, welches ich nun auch für größere Mengentexte verwende. Insbesondere wenn ich Blocksatz nutze.

    in reply to: Change “Leave a Reply” to "Leave a Comment". #676649

    its in comments.php line 165.
    If you are working with more than one language you have to change than all translations because source phrase is than missing!

    in reply to: Circular Icons (as on kriesi.at homepage) #676624

    Bingo ! See here on top : Link

    4 or 6 Icon Circles : most is the same code-block has one less or one more circle.
    And only Positioning of the icons is the work to do – all the rest is similar to 5 Icon Circle !

    In the Code-Block you only have to complete Link, link-target and fill in you own Caption

    • This reply was modified 8 years, 10 months ago by Guenni007.
    in reply to: Circular Icons (as on kriesi.at homepage) #676620

    and this is for rotating icons on hovering :

    .circle .av_font_icon:hover .av-icon-char {
    animation-name: iconrotate;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 2;
    animation-play-state: running;
    animation-direction: alternate;
    /* Firefox: */
    -moz-animation-name: iconrotate;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: 2;
    -moz-animation-play-state: running;
    -moz-animation-direction: alternate;
    /* Safari and Chrome: */
    -webkit-animation-name: iconrotate;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 2;
    -webkit-animation-play-state: running;
    -webkit-animation-direction: alternate;
    -webkit-backface-visibility: visible
    }
    @keyframes iconrotate
    {
    from {transform:rotateY(0deg);}
    to {transform:rotateY(180deg);}
    }
     
    @-moz-keyframes iconrotate /* Firefox */
    {
    from {-moz-transform:rotateY(0deg);}
    to {-moz-transform:rotateY(180deg);}
    }
     
    @-webkit-keyframes iconrotate /* Safari and Chrome */
    {
    from {-webkit-transform:rotateY(0deg);}
    to {-webkit-transform:rotateY(180deg);}
    }

    you can take every transform – here it is a rotation on Y-Achsis

    in reply to: Circular Icons (as on kriesi.at homepage) #676613

    The 5 Circle Case:

    Some Positioning:

    
    /* the circle itself border-radius has to be more than 50% of height and width */
    .circle {
        border: 2px solid #059 !important;
        border-radius: 250px;
        display: block;
        height: 500px;
        overflow: visible;
        padding: 0 !important;
        width: 500px;
        position: relative;
        margin: 60px
    }
    
    /* if you like to have a background-image in the circle, with less opacity */
    .circle::before {
        background-color: transparent;
        background-image: url("http://webers-testseite.de/ikom/wp-content/uploads/sh_284363741.jpg");
        border-radius: 250px;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.5;
        position: absolute;
        top: 0;
        width: 100%;
    }
    
    /* if you don't like to change the code itself you can set the icon size here */
    .circle .av_font_icon .av-icon-char  {
        font-size: 50px !important;
        line-height: 50px !important;
        width: 50px !important;
    }
    
    /* this is the class from the code not the caption set by icon element and determines the position where the description is shown */
    .circlecaption {
        position: relative;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* you see in that code that these are the single text elements of each Icon */
    .circlecaption span {
        display: none;
        width: 250px; 
    font-size: 16px;
    text-align: center
    }
    
    /* this is the logo or image in the center - hover states must follow than */
    .circlecaption img {
        display: block;
        width: 250px;
    }
    
    /* very nice gimmick - the tilde (swung dash) is a special selector - read yourself  */
    /* it is called: General Sibling Combinator */
    .circle .av_font_icon.circle1-5:hover ~ div.circlecaption span.circle1-5,
    .circle .av_font_icon.circle2-5:hover ~ div.circlecaption span.circle2-5,
    .circle .av_font_icon.circle3-5:hover ~ div.circlecaption span.circle3-5,
    .circle .av_font_icon.circle4-5:hover ~ div.circlecaption span.circle4-5,
    .circle .av_font_icon.circle5-5:hover ~ div.circlecaption span.circle5-5 {
    display: block;
    background: rgba(255,255,255,0.8);
    padding: 5px;
    border-radius: 5px
    }
    
    /* hover effects for the hovered links  */
    
    .circle .av_font_icon.circle1-5:hover a {
    background: #BF00FF;
    color: #fff !important
    }
    .circle .av_font_icon.circle2-5:hover a {
    background: #0080FF;
    color: #fff !important
    }
    .circle .av_font_icon.circle3-5:hover a {
    background: #00FF00;
    color: #fff !important
    }
    .circle .av_font_icon.circle4-5:hover a {
    background: #FFFF00;
    color: #000 !important
    }
    .circle .av_font_icon.circle5-5:hover a  {
    background: #FF0000;
    color: #fff !important
    }
    
    /*  hovering the icons - let the logo in the circle disappear */
    .circle .av_font_icon:hover ~ div.circlecaption .circlelogo {
    display: none !important;
    }
    
    /* positioning of each icon in the uniform pentagon - so most positions are calculated and nearly not  influenced*/ 
    /*  - by circle dimensions  - 50px is here  icon-font-size  -  but this is a lot trial and error  */
    
    .circle .av_font_icon a , 
    .circle .av_font_icon span {
        background-color: #fff;
    }
    
    .av_font_icon.circle1-5 {
        position: absolute;
        top: calc(0px - 55px);
        left: calc(0px + 195px);
    }
    
    .av_font_icon.circle2-5 {
        position: absolute;
        top: calc(0px + 118px);
        left: calc(0px + 433px);
    }
    
    .av_font_icon.circle3-5 {
        position: absolute;
        top: calc(0px + 397px);
        left: calc(0px + 342px)
    }
    
    .av_font_icon.circle4-5 {
        position: absolute;
        top: calc(0px + 397px);
        left: calc(0px + 48px);
    }
    
    .av_font_icon.circle5-5 {
        position: absolute;
        top: calc(0px + 118px);
        left: calc(0px - 55px);
    }
    

    here some code for responsive case:

    
    @media only screen and (max-width: 720px) {
    
    .circle .av_font_icon .av-icon-char  {
        font-size: 40px !important;
        line-height: 40px !important;
        width: 40px !important;
    }
    
    .circle .av_font_icon .av-icon-char {
        padding: 20px !important;
    }
    
    .circle {
        height: 350px;
        margin: 40px;
        overflow: visible;
        width: 350px;
        border-radius: 190px;
    }
    
    .av_font_icon.circle1-5 {
        position: absolute;
        top: calc(0px - 35px);
        left: calc(0px + 135px);
    }
    
    .av_font_icon.circle2-5 {
        position: absolute;
        top: calc(0px + 81px);
        left: calc(0px + 301px);
    }
    
    .av_font_icon.circle3-5 {
        position: absolute;
        top: calc(0px + 277px);
        left: calc(0px + 238px)
    }
    
    .av_font_icon.circle4-5 {
        position: absolute;
        top: calc(0px + 277px);
        left: calc(0px + 32px);
    }
    
    .av_font_icon.circle5-5 {
        position: absolute;
        top: calc(0px + 81px);
        left: calc(0px - 32px);
    }
    }
    
    • This reply was modified 8 years, 10 months ago by Guenni007.
    in reply to: Circular Icons (as on kriesi.at homepage) #676612

    the circle itself is not so tricky but animation and hover states are a bit more complicated.
    What i have done is a container with code-block in it
    in this codeblock i place the following code for the first 5 icon circel:
    The container where code-block is in gets the class “circle “ but you can take ever other class name you want

    [av_font_icon icon='uf1fd' font='fontawesome' style='border' caption='Tradition' link='manually,#' linktarget='' size='60px' position='center' color='' custom_class='circle1-5'][/av_font_icon]
    [av_font_icon icon='uf0c0' font='fontawesome' style='border' caption='Leadership' link='manually,#' linktarget='' size='60px' position='center' color='' custom_class='circle2-5'][/av_font_icon]
    [av_font_icon icon='uf085' font='fontawesome' style='border' caption='Workflow' link='manually,#' linktarget='' size='60px' position='center' color='' custom_class='circle3-5'][/av_font_icon]
    [av_font_icon icon='uf0e8' font='fontawesome' style='border' caption='Organigramm' link='manually,#' linktarget='' size='60px' position='center' color='' custom_class='circle4-5'][/av_font_icon]
    [av_font_icon icon='uf085' font='fontawesome' style='border' caption='Workflow' link='manually,#' linktarget='' size='60px' position='center' color='' custom_class='circle5-5'][/av_font_icon]
    <div class="circlecaption"> 
    <span class="circle1-5"> <strong>Tradition</strong> - kann für Ihre Firma bedeutend sein </span>
    <span class="circle2-5"> <strong>Leadership</strong> - überall da wo es dem Wohle der Firma dient </span>
    <span class="circle3-5"> <strong>Workflow</strong> - immer im Auge behalten </span>
    <span class="circle4-5"> <strong>Organisation</strong> - hält die Firma zusammen </span>
    <span class="circle5-5"> <strong>Cashflow</strong> - ganz wichtig für den Schlaf </span>
    <img class="circlelogo" src="http://webers-testseite.de/ikom/wp-content/uploads/WordpressWebdesign2.png" alt="WordpressWebdesign" />
    </div>

    that was the starting point.
    Than there is primary a bit of math knowledge and a lot of positioning because here it is important that relative and absolute positioning is the trick.

    in reply to: Add a secondary logo in the header on the right side #676479

    i do not see your site – so i can not help you –
    i mentioned above that i have made this for my solution for ipad landscape. This depends on the logos and the logo width.

    so play a bit with those values of logo width.
    And a good advice is to make the images the same size on your graphic program.

    • This reply was modified 8 years, 10 months ago by Guenni007.
Viewing 30 posts - 10,411 through 10,440 (of 11,480 total)