Viewing 30 results - 137,761 through 137,790 (of 138,334 total)
  • Author
    Search Results
  • brownmestizo
    Participant

    Hi, I am trying to vertically align the menu at the baseline of the logo but it doesn’t seem to work. Here is the page in question: http://175.107.134.9/~peterhar/?page_id=1167

    Furthermore, the a tags in the ul menu is being appended with a fixed height and fixed line height. However, I can’t figure out which js is doing that. Anyone can help?

    #121271

    In reply to: Change Top Menu Colors

    Hi,

    You removed something. Please use this instead.

    .main_menu a {
    color: white !important;
    }

    .current-menu-item > a {
    color: black !important;
    }

    .header_color .main_menu .menu ul li a:hover {
    background-color: white;
    color: orange !important;
    }

    .current-menu-item > a .avia-menu-fx {
    background: black;
    }

    .current-menu-item > a .avia-menu-fx .avia-arrow-wrap .avia-arrow {
    background: black !important;
    border-color: black;
    }

    .avia-menu-fx {
    bottom: 0;
    }

    Enjoy the theme. :)

    Cheers,

    Ismael

    #121545

    Hi,

    Unfortunately, this is a bit complicated. Please hire a freelance developer to add this customization on the theme. You can edit the fixed header behavior on js > avia.js.

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/2)
    {
    newH = el_height - st;

    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Thanks,

    Ismael

    #121540

    Hi,

    Open css > shortcodes.css then find this code

    @media only screen and (max-width: 767px)  {
    .responsive .tabcontainer{border-width: 1px; border-style: solid; border-top:none;}
    .responsive .tabcontainer .tab_titles{display:none;}
    .responsive .tabcontainer .tab_content, .responsive .tabcontainer .tab
    {width:100%; max-width:100%; border-left:none; border-right:0;left:0; top:0; min-height: 0!important;}
    .responsive .tabcontainer .tab_content{border-bottom:none; padding:15px 30px; clear: both; }
    .responsive .tabcontainer .tab.fullsize-tab{ display:block; margin-bottom:-1px;}
    .responsive .top_tab .tab.fullsize-tab{ margin-bottom:0px;}

    }

    Remove it. Although it does look better when viewing on mobile device.

    Regards,

    Ismael

    #121537

    Hi,

    You have a lot of options to open an image to a new window.

    1.) Insert a text block then add an html tag. Something like this

    <a target="_blank" href="YOURURLHERE"><img src="YOURIMAGEHERE" /></a>

    2.) You can edit config-templatebuilder > avia-shortcodes > image.php then find this code

    $output.= "<a href='{$link}' class='avia_image ".$meta['el_class'].$this->class_by_arguments('align' ,$atts, true)."'><img class='avia_image {$class}' src='{$src}' alt='' /></a>";

    Replace it with

    $output.= "<a target='_blank' href='{$link}' class='avia_image ".$meta['el_class'].$this->class_by_arguments('align' ,$atts, true)."'><img class='avia_image {$class}' src='{$src}' alt='' /></a>";

    3.) This is the rendered html tag when using the Image shortcode via AviaBuilder. You can copy and paste it manually. Change the anchor tag link and the image url.

    <a href="http://www.yourlinkhere.com" class="avia_image avia-builder-el-49 el_after_av_slideshow_full avia-builder-el-no-sibling avia-align-center "><img class="avia_image avia_animated_image avia_animate_when_almost_visible right-to-left avia_start_animation" src="http://localhost/kriesi/enfold/wp-content/uploads/2011/12/imac_big_demo-300x180.png" alt=""><span class="image-overlay overlay-type-extern" style="opacity: 0; left: 0px; top: 0px; display: block; height: 180px; width: 300px;"><span class="image-overlay-inside"></span></span></a>

    Regards,

    Ismael

    #23909
    vijaypillai
    Participant

    I am wondering if anyone could give pointers on how to create a banner on the header (above the menu) like in the following site:

    http://shop.creationnetworks.net/

    Thank you very much in advance!!

    #121109

    Hi,

    That file is still in there

    http://www.andypeck.co.uk/wp-content/themes/enfold/config-layerslider/LayerSlider/skins/.DS_Store/skin.css

    Take a look at a 3d representation of your page. http://i.imgur.com/ToEFKt9.png Each panel here is some html object that either has its own background color or has an inherited background color. So you would need to investigate each one.

    This one is probably it,

    .header_color .main_menu ul {
    background-color: rgb(36, 31, 29,.5);
    }
    #top .main_menu ul {
    background-color: rgb(36, 31, 29,.5);
    }
    #top .main_menu {
    background-color: rgb(36, 31, 29,.5);
    }

    Change the .5 which is 50% transparent

    Thanks,

    Nick

    `

    #120329

    Hi,

    Well there is no room for it, so lets push the menu a little to the left.

    #top .main_menu {
    right: 32px;
    }

    —-

    You can try this block to reposition the cart. Just take out the one you put in before that I gave you

    #top .cart_dropdown.visible_cart {
    right: -1px;
    top: -2px;
    display: inline-block;
    position: absolute;
    }

    If you don’t like that, the only thing I can suggest is to reposition the basket at the same time when the logo shrinks

    Please open up /js/avia.js and find the block of code 763-807

    line 763 looks like

    //check if the browser supports element rotation

    and line 808 looks like

    //check if the browser supports element rotation

    So delete everything between lines 763 and 808, and in that place paste the code below

    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    basket = $('.cart_dropdown'),
    logo = header.find('.logo img'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    newTop = 0,
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(),
    newH = 0;
    if(st < el_height/2)
    {
    newH = el_height - st;
    newTop = -2;
    }else
    {
    newH = el_height/2;
    newTop = 21;
    }elements.css({
    height: newH + 'px',
    lineHeight: newH + 'px'
    });
    basket.css({
    top: newTop + 'px'
    });
    }if(!header.length) return false;
    if(isMobile)
    {
    return false;
    }win.scroll(set_height);
    set_height();
    }

    Thanks,

    NIck

    #121270

    In reply to: Change Top Menu Colors

    Thanks, but the arrow i see now as white..hmm.

    This is my entire css changes as per your recommentation:

    .main_menu a {

    color: white !important;

    }

    .current-menu-item > a {

    color: black !important;

    }

    .header_color .main_menu .menu ul li a:hover {

    background-color: white;

    color: orange !important;

    .current-menu-item > a .avia-menu-fx {

    background: black;

    }

    .current-menu-item > a .avia-menu-fx .avia-arrow-wrap .avia-arrow {

    background: black !important;

    border-color: black;

    }

    .avia-menu-fx {

    bottom: 0;

    }

    did i do anything wrong perhaps? If css on FTP has been modified i can replace with default if you tell me what file to replace with original :)

    Thank you Ismael, you are a talended and nice guy, appreciate it!

    #121298

    The issue is partially resolved, I found the answer in the thread below:

    https://kriesi.at/support/topic/contact-form-not-working-15

    However, the issue persists with an old version of Firefox on Mac. I tested it on a machine where I’m running Firefox 16.0.2 and nothing is happening when I click on “Notify Me”. The text boxes disappear but confirmation message does not show nor is the email being sent.

    #121307

    In reply to: Header Border (bottom)

    Hey,

    Okay this first image shows the bottom of the page. You can see where the page ends and the footer begins. There is a dark black line. I would want that line to be lighter or have a drop shadow that comes on top of the footer. This will give the effect that the footer is in the back? hopefully it makes sense.

    https://docs.google.com/file/d/0B8Ofil_BJ_yzaEN2dVRSMklONFk/edit?usp=sharing

    #119556

    Hi Ismael,

    Did that trick before, in Firefox. Doesn’t help there at all. Firefox keeps crashing once I try to open the slider. I’ve now resorted to using Chrome. Disabled the plugins and things worked fine. Then activated the plugins one at a time, and everything kept working. The issue must be the compatibility with Firefox, then? Or am I the only one experiencing these problems? Ayway, for now I’ll just keep working in Chrome. At least I can work on the slider again.

    Thanks for your help, Ismael.

    Regards,

    Elly

    P.S. I look forward to Kriesi fixing the bugs concerning Firefox and Explorer use. I initially started working with Firefox because all formatting was stripped when using Explorer (not just in the slider, but on any page). That issue is already being addressed in another topic. Now Firefox is off limits, since I can’t get it to work with the homeage slider. I do hope Chrome will keep performing…

    #121448

    In reply to: Footer help block

    Insert following code into a “standard editor” field:

    [av_section color='alternate_color' custom_bg='' src='' position='top left' repeat='stretch' attach='scroll' padding='default' shadow='no-shadow']
    [av_textblock]
    <h2 style="text-align: center;">In case you need help</h2>
    <p style="text-align: center;">Here are several ways to contact us</p>
    [/av_textblock]

    [av_hr class='short' height='50' shadow='no-shadow' position='center']

    [av_one_third first]

    [av_icon_box icon='59' position='top' title='Need Support?']
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_icon_box]

    [/av_one_third][av_one_third]

    [av_icon_box icon='122' position='top' title='Presales Question?']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.
    [/av_icon_box]

    [/av_one_third][av_one_third]

    [av_icon_box icon='56' position='top' title='Check Forum']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.
    [/av_icon_box]

    [/av_one_third]
    [/av_section]

    [av_one_half first]

    [av_heading heading='FAQ' tag='h3' color='meta-heading' style='' padding='10']

    [av_textblock]
    Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.
    <h4>Nulla consequat massa quis enim?</h4>
    [av_dropcap1]D[/av_dropcap1]onec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    <h4>Vivamus elementum semper nisi?</h4>
    [av_dropcap1]A[/av_dropcap1]enean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius lallus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum.
    <h4>Aenean imperdiet?</h4>
    [av_dropcap1]E[/av_dropcap1]tiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.
    [/av_textblock]

    [/av_one_half][av_one_half]

    [av_heading heading='Check the Knowledebase' tag='h3' color='meta-heading' style='' padding='10']

    [av_textblock]
    Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum.
    <h4>Aenean imperdiet?</h4>
    Aenean commodo ligula eget dolor. Aenean <strong>massa</strong>. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.
    <h4>Nulla consequat massa quis enim?</h4>
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    <blockquote>Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus.</blockquote>
    Aenean commodo ligula eget dolor. Aenean <strong>massa</strong>. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.
    <h4></h4>
    [/av_textblock]

    [/av_one_half]

    and save the entry. Then you can switch to the “advanced layout” editor and edit the content. You also need to add a custom background image to the color section.

    #121218

    Hi,

    Sorry the confusion, I mean that I want take off the whole top area (area where is social icon). How is that happens?

    Thank you!

    #121246

    Hi Ismael,

    like I wrote in the original post – I found the “Blog Style” option – but this will only change from list to grid, but it doesn’t offer the control of the complete page. For example I would like to have an icon box on top of the blog…

    Habe die Ehre,

    Detlef

    #121269

    In reply to: Change Top Menu Colors

    Hi,

    I will probably do this.

    .current-menu-item > a .avia-menu-fx {
    background: black;
    }

    .current-menu-item > a .avia-menu-fx .avia-arrow-wrap .avia-arrow {
    background: black !important;
    border-color: black;
    }

    .avia-menu-fx {
    bottom: 0;
    }

    This will make the arrow black on the current page.

    Regards,

    Ismael

    #121378

    Hi,

    Please refer to these links for the header background

    https://kriesi.at/support/topic/mega-menu-bug#post-108100

    https://kriesi.at/support/topic/header-background-image-2

    To change the sidebar background, use this on your Quick CSS

    .sidebar {
    background: red;
    }

    Regards,

    Ismael

    #119453

    Thank you. Is not exactly I need, but its ok. Works for other thinks. I really appreciate your effort to help all of us.

    Warm Regards,

    Alexia.

    #121268

    In reply to: Change Top Menu Colors

    Thanks Ismael !

    – You made my day and we are now one step closer to launch our new organisations official website :D

    May I ask how to make the original arrow to be seen for selcted page or so that it more clerer for visitor what page they are mouse over-ing?

    i tried this code:

    }

    .avia-menu-fx .avia-arrow-wrap {

    height: 15px;

    width: 10px;

    position: absolute;

    top: -15px;

    left: 50%;

    margin-left: -5px;

    overflow: hidden;

    display: none;

    }

    what would you have done if it was your site, to make arrow or something else make it more clear to visitor what page they are on?

    Thanks

    gamesymphonies
    Participant

    By default, the menu appears under the logo on the left; I’m trying to centre it instead.

    So far in Quick CSS, I’ve got rid of the search box:

    #top #menu-item-search {

    display: none;

    }

    I’ve also tried to use an auto-margin technique to centre:

    #top .main_menu {

    margin: 0 auto;

    float: none !important;

    left: auto;

    }

    Having no effect though, menu still is on the left. What am I missing?

    The only way I could get it to move from the left was to add in a “width” element:

    #top .main_menu {

    margin: 0 auto;

    width: 500px;

    float: none !important;

    left: auto;

    }

    But then the positioning of the menu varied depending on the width I entered. Choosing “width: 100%” had no effect at all.

    Hoping someone can shed some light (on what is probably very bad CSS from me)

    Loving this theme otherwise :)

    #23843
    andypeck
    Participant

    Hi there,

    I know this isnt from your theme but I had a java script code from my last theme that allowed Slickr Flick to add a fade effect over thumbs in the footer (if theres no border effect).

    Can you explain how I can implement this. I realise this may not work but i’d like to try it. If its wrong but you already know of another way to achieve the same effect then I could do with your suggestions – either with this plugin or another.

    Cheers

    Andy

    Here’s the code….

    jQuery(‘.slickr-flickr-gallery ul li a’).hover(

    function()

    {

    jQuery(this).stop();

    jQuery(this).animate({‘opacity’:’0.75′}, 200 );

    },

    function()

    {

    jQuery(this).stop();

    jQuery(this).animate({‘opacity’:’10’}, 100 );

    });

    #23839

    Topic: Background problem…

    in forum Enfold
    solljul
    Participant

    Hello,

    I have a problem with background in “big-preview” class (I think).

    In my custom.css I have this :

    html, .socket_color, .footer_color, .alternate_color, .container_wrap_logo, .main_color{

    background-image: url(../../../../../img/background.svg), url(../../../../../img/background_dark.png);

    background-size: 100% 100%, auto;

    background-position: left top, left top;

    background-repeat: no-repeat, repeat;

    background-attachment: fixed, fixed;

    }

    but in single post without sidebar with big preview as you can see here:

    http://www.juls.ch/studios/lost/

    there is a border without my background but with color defined in styles options.

    How can I remove this border??

    Thx

    Jul

    #114637

    Would like to see Instagram social icon at the top of the page.

    #121151

    Yes, Desktop Wallpaper is a category for that portfolio entry. Each portfolio item only has one category.

    However, I am using the advance layout editor. I find it quite helpful.. is there no way to have this work while using that feature for my layouts? Is there any work-around? Or do I need to code each portfolio layout from scratch for this to work?

    Thanks again for all your help! :)

    #118143

    In reply to: Child Theme

    Hey!

    No, unfortunately not (see https://kriesi.at/support/topic/upgrading-with-future-iterations#post-111329 ). We save the options with the theme name and the child theme will always have a different name.

    Best regards,

    Peter

    #121284

    Hi,

    Font use is

    h1, h2, h3, h4, h5, h6, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox {
    font-family: Open Sans, 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    PNG text images is preffered when using the LayerSlider WP.

    Regards,

    Ismael

    #121267

    In reply to: Change Top Menu Colors

    Hi,

    Please add this on your custom.css to change the menu color

    .main_menu a {
    color: white !important;
    }

    To change the active page color, use this

    .current-menu-item > a {
    color: black !important;
    }

    For the submenu hover, you can use this

    .header_color .main_menu .menu ul li a:hover {
    background-color: white;
    color: orange !important;
    }

    Regards,

    Ismael

    #121150

    Hi,

    Is Desktop Wallpaper a category for your portfolio entries? Please make it a category then do Dude’s code above. This will only work if you are not using the Advance Layout Editor for your portfolio items.

    Regards,

    Ismael

    #121257

    In reply to: Sidebar Styling

    Hi,

    1.) The sidebar expands when there are widgets present. It has no definite height. You need a javascript of some sort to make the sidebar inherit the height of the content area. A simple solution is to define a minimum height for the sidebar but this is not flexible and may not be appropriate for all types of pages. Add this on your Quick CSS or custom.css

    #top #main .sidebar {
    background: red;
    min-height: 600px;
    }

    2.) You can add this on your custom.css or Quick CSS.

    .widgettitle {
    border-bottom: 1px dotted red;
    padding-bottom: 10px;
    }

    3.) To add a bottom separator, you can use this

    .widget {
    border-bottom: 1px solid black;
    }

    Regards,

    Ismael

    #118996

    Hi,

    Glad they are fixed.

    For the header background, please follow these links.

    https://kriesi.at/support/topic/mega-menu-bug#post-108100

    https://kriesi.at/support/topic/header-background-image-2

    Cheers,

    Ismael

Viewing 30 results - 137,761 through 137,790 (of 138,334 total)