Viewing 30 results - 135,661 through 135,690 (of 142,932 total)
  • Author
    Search Results
  • #205504
    zerozendesign
    Participant

    Hi guys.

    I’m confused as to why the blank page template wants to arrange everything centered vertically instead of just having a margin from the top. What is happening is I have different sized images in an easy slider. Because they are different heights, the header area and footer area are moving up and down. How can we convert so that placement is relative to the top of the page instead of centered? You can see at http://codelessme.com/casey

    Regards,
    David

    #205503

    In reply to: Icon box cursor

    Hi!

    I tested the links, I can see the mouse cursor change to pointer when I hover over the iconbox top icons. Add this on your custom.css or Quick CSS:

    .iconbox_top .iconbox_icon {
    cursor: pointer !important;
    }

    Regards,
    Ismael

    #205496

    Hey Courin!

    Edit header.php, find this code:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');

    Below, add this code:

    echo "<div class='header-search'>";
    get_search_form();
    echo "</div>";

    Add this on your custom.css or Quick CSS:

    .header-search {
    position: absolute;
    top: 30px;
    left: 250px;
    }

    Modify the main menu font using this:

     .header_color .main_menu ul:first-child > li > a {
    color: red;
    }
    
    .main_menu ul:first-child > li > a {
    display: block;
    text-decoration: none;
    padding: 0 13px;
    font-weight: normal;
    font-size: 15px;
    }

    Cheers!
    Ismael

    #205486

    Hey!

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

    #top .fullsize .template-blog .post .entry-content-wrapper {
    max-width: 100%;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    max-width: 100%;
    }

    Adjust the max width.

    Best regards,
    Ismael

    #205484

    Hi!

    This will get you started. Add this on your custom.css or Quick CSS:

    .current-menu-item.current_page_item a {
    background: gray;
    border: 3px solid green;
    border-radius: 6px;
    }
    
    .main_menu ul:first-child > li a {
    height: 50px !important;
    line-height: 50px !important;
    }
    
    .main_menu {
    position: absolute;
    top: 30%;
    }

    Regards,
    Ismael

    #205478

    Thanks for all the suggestions everyone and keep them coming! Still no gurantee on any one feature but this is the only place where Kriesi is actively looking for feature requests.

    Also a small note that any support issues should be made as their own new topics :)

    #205438
    hellovlad_
    Participant

    Hi,
    Currently on my page http://www.linaukis.com the logo (blue circle at the top) is linking to a dummy page from the Enfold Theme.
    Where can I modify in the settings, so to that the homepage is set to be the portfolio page and logo is linking to it as well?
    can’t figure it out.

    thanks!

    #205426
    fjrichart
    Participant

    I’m using. I’ve created a second menu and as I’m using Header with social icons and bottom it appears on top above the logo.
    Is it possible to make this second menu appear below the logo and eliminate the line above the logo? At least in the mobile.

    #205409

    Hi Josue,
    I’m currently developing locally (I use Desktop Server as it’s quite a big site) so unfortunately I can’t provide a link. Any way you could provide some “generic” CSS that I could adapt?
    I’d still be interested in how to disable the slider completely for mobile too.

    Regards

    John

    #205356

    Add this code too:

    .avia-builder-el-7 table label {
        position: relative;
        top: -15px;
    }

    Regards,
    Josue

    #205332
    Courin
    Participant

    Hallo Zusammen,
    ich habe wieder ein paar fragen zu meinen kleinen Projekt.

    http://shop.rb1.at/

    Erste Frage
    Ich möchte gerne den Header-Bereich Editieren, damit ich rechts neben dem Logo eine Search-bar einfügen kann.
    bitte sagt mir auch gleich welche Befehlszeile ich benötige um Sie hier einzubinden.

    Zweite Frage
    ich möchte die Schriften unabhängig in Größe und Stärke editieren für das Top Menü – Hauptmenü und das Footer Menü

    Ich danke euch vorab,

    mit freundlichen Grüßen,

    Courin

    #205310

    Although my Client Gallery is named that – the CPT Name of client-gallery was being returned – which was not ideal – so I added to your function and now it becomes

    add_filter('avf_title_args', 'alter_single_post_title', 10, 2);
    
    function alter_single_post_title($args,$id)
    {
    if (is_single())
    {
    $type_title = get_post_type($id);
    $type_title = str_replace("-", " ", $type_title);
    $type_title = str_replace("_", " ", $type_title);
    $type_title = ucwords($type_title);
    
    $args['title'] = $type_title;
    $args['link'] = get_permalink($id);
    }

    Meaning now in the top left it does read Client Gallery

    #205299

    In reply to: home page spacing

    Hey!

    Following css code should work

    
    #top.page-id-18 .avia_message_box.avia-size-normal {
    margin-bottom: 10px;
    }
    

    Best regards,
    Peter

    #205298

    Hi p_niedrich!

    Another user reported a similar issue and I posted a solution here: https://kriesi.at/support/topic/create-portafolio-entry-and-404-error/#post-205295

    Install the WPML string translation extension and go to the option page: http://berlinguitartrio.de/wp-admin/admin.php?page=wpml-translation-management%2Fmenu%2Fmain.php&sm=mcsetup&admin_bar=1

    You’ll then see some text fields which help you to translate the portfolio slug ( http://www.clipular.com/c/5427218738053120.png?k=-y-mKIbXukjXaOL7CJjwBrDPQLE ). You must also configure the default slug on the “Settings > Permalinks” page. Afterwards save all settings (WPML and permalink settings) and the portfolio items should work.

    Regards,
    Peter

    #205258

    In reply to: Contact & cart icons

    Hey!

    You can use this for the sub or top menu:

    .sub_menu>ul>li:hover a {
    background: gray;
    padding: 10px 0 5px 0;
    }

    Cheers!
    Ismael

    #205251

    In reply to: home page spacing

    Hey!

    Please use this:

    .page-id-18 .flex_column.av_one_fourth {
    margin-top: 5px;
    }

    Regards,
    Ismael

    #205247

    Hi!

    Please add this on your custom.css or Quick CSS to adjust the height then position the language selector properly:

    #lang_sel_click a, #lang_sel_click a:visited {
    line-height: 5px;
    }
    
    #lang_sel_click {
    position: absolute;
    top: -10px;
    left: -150px;
    }
    
    #lang_sel_click .sub_menu li ul {
    top: 26px;
    left: 10px;
    border-top: none;
    }

    Cheers!
    Ismael

    #205243

    In reply to: Youtube Embed Options

    Hey EvanMPW!

    You can use a Text Block then switch to the Text editor. Add the youtube embed code under Share panel.

    <iframe width="560" height="315" src="//www.youtube.com/embed/w9OhG7Wx1CY?rel=0" frameborder="0" allowfullscreen></iframe>

    The “?rel=0″ at the end of the URL will disable the suggested videos. You can also add “&autoplay=1″ to enable auto play.

    <iframe width="560" height="315" src="//www.youtube.com/embed/w9OhG7Wx1CY?rel=0&autoplay=1" frameborder="0" allowfullscreen></iframe>

    Best regards,
    Ismael

    #205234

    Thank you so much!
    You can consider closed this topic

    Cheers!
    Cloddi

    #205228

    Hey!

    Please add following code to Quick CSS as well

    #top .header_color .ajax_search_entry:hover {
    background-color: white;
    }

    Regards,
    Yigit

    Thanks Devin.

    Yes, my aim would be to have it behind the header but could still work with the color content section.

    The challenge with the image inside the color content section is that to make it use the whole area – it also centers the containers. If you only have a few containers, then they appear in the middle of the screen.

    Is there any CSS to use all available area (not including behind the menu) via a color section AND make those containers align to the top of the screen and not the middle?

    Thanks

    • This reply was modified 12 years, 3 months ago by Weka.
    #205211
    This reply has been marked as private.
    #205198

    In reply to: BuddyPress vs BBpress

    Hey KingConga!

    Not great BuddyPress integration yet but it looks like S2Member can work with BBPress http://www.s2member.com/forums/topic/bbpress-2-2-4-integration/

    Best regards,
    Devin

    #205196

    Hey!

    Please see Ismael’s post here to deactivate LayerSlider https://kriesi.at/support/topic/disable-layerslider-failed/#post-203464
    It depends on the slider that you are going to use but i do not think it will cause any issues.

    Regards,
    Yigit

    #205186

    Hey!

    Try adding this code to the Quick CSS:

    .avia_wpml_language_switch:before {
        content: url(https://upload.wikimedia.org/wikipedia/commons/2/29/WikEd_Button_WhereIHaveBeenTools.PNG);
        position: absolute;
        width: 20px;
        height: 20px;
        display: block;
        top: -10px;
        left: -8px;
    }

    Result:

    Cheers! 
    Josue

    #205176

    Hey debkeller!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    #top .social_bookmarks { float: right; }

    Regards,
    Yigit

    #205164

    Hey!

    I was able to fix it using the plugin i mentioned, go to Ferramentas > Tradução > Enfold > Português/Brasil: Editar, then look for the string “Sort by”:

    Fix it, and finally click the button on top that says “Gerar arquivo .mo”, and that should be it.

    If that doesn’t work, please provide me with an Administrator account so i can try to fix it myself.

    Cheers!
    Josue

    #205161

    In reply to: Sidebar Menu

    This reply has been marked as private.
    #205140

    In reply to: home page spacing

    i know.. i want the top row of light blue boxes to be CLOSER than the blue,green,map and contact graphic, i want to remove the space

    #205137
    Wordpressed
    Participant

    Hi,

    I am building a Gravity Forms with pagination. Each time I move to the next page of the form the page re-aligns and places the top part of the Gravity Forms underneath the menu, it seems it thinks it putting the form at the top of the page but isn’t recognising the floating header.

    Does anyone know of a quick fix for this kind of problem please?

    Regards,

    Graeme.

Viewing 30 results - 135,661 through 135,690 (of 142,932 total)