Forum Replies Created

Viewing 30 posts - 67,021 through 67,050 (of 67,460 total)
  • Author
    Posts
  • in reply to: Button hover color change #120764

    Hi,

    Just add this on your custom.css or Quick CSS

    body .avia-button.avia-color-theme-color:hover {
    color: white;
    color: rgba(0, 0, 0, 0.5);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    background-color: blue;
    }

    Change the values.

    Regards,

    Ismael

    in reply to: Gravity Forms – Field Sizing #119936

    Hi,

    You can find all of the theme’s form style on css > base.css

    /* #Forms
    ================================================== */

    #top form {
    margin-bottom: 20px; }
    #top fieldset {
    margin-bottom: 20px; }
    #top .input-text,
    #top input[type="text"],
    #top input[type="input"],
    #top input[type="password"],
    #top input[type="email"],
    #top input[type="number"],
    #top input[type="url"],
    #top input[type="tel"],
    #top input[type="search"],
    #top textarea,
    #top select {
    -webkit-appearance: none;
    border: 1px solid #e1e1e1;
    padding: 8px 6px;
    outline: none;
    font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #777;
    margin: 0;
    width: 210px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    border-radius: 0px;
    }

    #top input[type="text"]:focus,
    #top input[type="password"]:focus,
    #top input[type="email"]:focus,
    #top input[type="number"]:focus,
    #top input[type="url"]:focus,
    #top input[type="tel"]:focus,
    #top input[type="search"]:focus,
    #top textarea:focus {
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
    color: #555;
    }
    #top textarea {
    min-height: 60px; line-height:1.5em;}
    #top label{
    display: block;
    font-weight: bold;
    font-size: 12px; }
    #top legend {
    display: block;
    font-weight: normal;
    font-size: 15px; }
    #top select {
    width: 220px; }
    #top input[type="checkbox"] {
    display: inline; }
    #top label span,
    #top legend span {
    font-weight: normal;
    font-size: 13px;
    color: #444; }

    #top textarea{width:100%;}

    #top #wrap_all .valid .text_input, #top #wrap_all .valid .text_area{border:1px solid #9AA600;} /*#70A41B*/
    #top #wrap_all .error .text_input, #top #wrap_all .error .text_area{border:1px solid #DF653E;}
    #top #wrap_all .ajax_alert .text_input, #top #wrap_all .ajax_alert .text_area{border:1px solid #ffb628;}

    I think this part of the style is the one preventing you from defining input width

    #top .input-text,
    #top input[type="text"],
    #top input[type="input"],
    #top input[type="password"],
    #top input[type="email"],
    #top input[type="number"],
    #top input[type="url"],
    #top input[type="tel"],
    #top input[type="search"],
    #top textarea,
    #top select {
    -webkit-appearance: none;
    border: 1px solid #e1e1e1;
    padding: 8px 6px;
    outline: none;
    font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #777;
    margin: 0;
    width: 210px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    border-radius: 0px;
    }

    The width is set to 210px.

    Regards,

    Ismael

    Hi,

    Edit header.php then find this code

    $phone = avia_get_option('phone');
    $phone_class = !empty($nav) ? "with_nav" : "";
    if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";

    Cut that and place it below this code

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

    Add this on your custom.css or Quick CSS

    .social_header .phone-info {
    font-weight: bold;
    height: 30px;
    line-height: 10px;
    right: 200px;
    top: 40px;
    position: absolute;
    }

    .social_header .phone-info.with_nav span {
    border: none;
    }

    Cheers,

    Ismael

    Hi,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Margin-bottom in portfolio grid #120681

    Hi,

    It doesn’t have a bottom margin. The portfolio grid layout should be intact without padding and margins. Can you give us a link to your website?

    Maybe, you didn’t add an excerpt to your portfolio items. Edit each portfolio items, look for Screen Options > Tick the Excerpt. Place an excerpt to remove the bottom space.

    Regards,

    Ismael

    in reply to: Handle image linked event #120383

    Hi,

    Can you please apply Devin’s solution? I don’t see the avatars.

    Regards,

    Ismael

    Hi,

    Edit your Contact page, look for Layout > Layout, if right or left sidebar is selected, under Sidebar Setting > choose a different Widget Area.

    Regards,

    Ismael

    in reply to: Thumbnail of Comb Plugin. #119747

    Hi,

    Please add this on your custom.css

    .news-thumb {
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
    }

    Regards,

    Ismael

    in reply to: Calling post_type=page i receive a blank page #120246

    Hi,

    Try to add this on your wp-config.php

    define('WP_MEMORY_LIMIT', '96M');

    This might not work if your host doesn’t allow the option, in that case contact your host to increase the PHP memory limit.

    Update us if it helps.

    Cheers,

    Ismael

    in reply to: IE 8 fallback for search icon(s) in menu #120649

    Hi,

    You can do something like this on your custom.css

    #menu-item-search {
    background: url(../images/layout/loading.gif) no-repeat center9;
    text-indent: -9999px9;
    }

    Replace the image URL with a search icon. Don’t remove the 9, it means for IE8 and below

    Regards,

    Ismael

    in reply to: Category problem #120763

    Hi,

    Are you using the Advance Layout Editor > Blog Posts element? If so, look for pagination, select “yes”.

    Regards,

    Ismael

    in reply to: Remove featured image #120627

    Hi,

    You can hide via css. Add this on your custom.css

    .page .page-thumb {
    display: none;
    }

    Cheers,

    Ismael

    in reply to: form css #120762

    Hi,

    You can find all of the form styles on base.css

    /* #Forms
    ================================================== */

    #top form {
    margin-bottom: 20px; }
    #top fieldset {
    margin-bottom: 20px; }
    #top .input-text,
    #top input[type="text"],
    #top input[type="input"],
    #top input[type="password"],
    #top input[type="email"],
    #top input[type="number"],
    #top input[type="url"],
    #top input[type="tel"],
    #top input[type="search"],
    #top textarea,
    #top select {
    -webkit-appearance: none;
    border: 1px solid #e1e1e1;
    padding: 8px 6px;
    outline: none;
    font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #777;
    margin: 0;
    width: 210px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    border-radius: 0px;
    }

    #top input[type="text"]:focus,
    #top input[type="password"]:focus,
    #top input[type="email"]:focus,
    #top input[type="number"]:focus,
    #top input[type="url"]:focus,
    #top input[type="tel"]:focus,
    #top input[type="search"]:focus,
    #top textarea:focus {
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
    color: #555;
    }
    #top textarea {
    min-height: 60px; line-height:1.5em;}
    #top label{
    display: block;
    font-weight: bold;
    font-size: 12px; }
    #top legend {
    display: block;
    font-weight: normal;
    font-size: 15px; }
    #top select {
    width: 220px; }
    #top input[type="checkbox"] {
    display: inline; }
    #top label span,
    #top legend span {
    font-weight: normal;
    font-size: 13px;
    color: #444; }

    #top textarea{width:100%;}

    #top #wrap_all .valid .text_input, #top #wrap_all .valid .text_area{border:1px solid #9AA600;} /*#70A41B*/
    #top #wrap_all .error .text_input, #top #wrap_all .error .text_area{border:1px solid #DF653E;}
    #top #wrap_all .ajax_alert .text_input, #top #wrap_all .ajax_alert .text_area{border:1px solid #ffb628;}

    The review button on my end is white and it is crystal clear. Can you give us a link to your website?

    Cheers,

    Ismael

    in reply to: scroll-to-id plugin not working #120761

    Hi,

    I don’t see anything on this page http://genau.drivott.com/results/.

    You should probably seek for support with the plugin developer.

    Cheers,

    Ismael

    in reply to: BUG: hover image from texteditor #120735

    Hi,

    Yeah, I can see it. Please do the following steps. I believe you have something like this on your editor

    <a href="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/2.jpg"><img class="alignleft size-medium wp-image-316" alt="2" src="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/2-300x195.jpg" width="300" height="195" /></a>

    Put a class selector on the anchor tag. Something like this

    <a class="leftalign-moz-fix" href="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/2.jpg"><img class="alignleft size-medium wp-image-316" alt="2" src="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/2-300x195.jpg" width="300" height="195" /></a>

    Now add this on your custom.css

    .leftalign-moz-fix {
    float: left !important;
    }

    I will tag Kriesi.

    Cheers,

    Ismael

    Hi,

    Add this on your custom.css or Quick CSS.

    .noborder_tabs.sidebar_tab_left .tab_content {
    border-left: 1px solid #E1E1E1;
    left: -1px;
    }

    Cheers,

    Ismael

    in reply to: WPML Language switcher in header? #120746

    Hi,

    Edit header.php then find this code

    do_action('avia_meta_header');

    Below, place this code

    do_action('icl_language_selector');

    Then add this on your custom.css

    #lang_sel a {
    border: none;
    }

    #lang_sel {
    right: -60px;
    top: -10px;
    }

    #lang_sel a.lang_sel_sel {
    background: url(../img/nav-arrow-down.png)right no-repeat;
    color: #444;
    }

    Change the top and right properties to position the switcher.

    Cheers,

    Ismael

    in reply to: increase size and padding of header? #119810

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: portfolio layout #119925

    Hi,

    You can manually reorder the portfolio items with that plugin.

    Regards,

    Ismael

    in reply to: Rollover disc arrow replacement #120738

    Hi,

    Open css > base.css and find this line of codes

    .image-overlay{position: absolute; background: #fff; z-index: 500;}
    .image-overlay .image-overlay-inside{height:100%; width:100%; position: absolute; left:0; top:0;}
    .image-overlay .image-overlay-inside::before{position: absolute; border-radius: 50px; background: #000; height:80px; width:80px; line-height:80px; left:50%; top:50%; margin: -40px 0 0 -40px; z-index: 500; text-align: center; color:#fff;}
    .image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}
    #top .hide-inner-overlay .image-overlay-inside{display: none;}

    You can change the fontello symbols on these lines.

    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}

    Something like this

    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"E714";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"E714";}

    Please refer to this link for more entypo fontello symbols.

    http://www.entypo.com/characters/

    Cheers,

    Ismael

    in reply to: cancel horizontal lines between layout elements #120544

    Hi,

    I see, you can disable them with css. Add this on your custom.css or Quick CSS.

    #av_section_2 {
    border: none;
    }

    #av_section_3 {
    border: none;
    }

    If you are using chrome, just right click the page, click “Inspect element” then look for the these classes. Do the code above for each of them.

    Nice website. :)

    Cheers,

    Ismael

    in reply to: Sidebars on smaller screens #120389

    Hey,

    Glad it worked. :)

    Enjoy the theme!

    Cheers,

    Ismael

    in reply to: Can't edit text in advanced layout editor #119900

    Hi,

    These are the steps you can do.

    1.) Clear browser cache then reload the page. Press F5 a few times.

    2.) Contact your host to check your file permissions. Maybe it has something to do with that.

    3.) Go to Users > Edit your user account > Look for “Disable the visual editor when writing”, it should be unchecked.

    4.) You should have WordPress 3.5 or higher.

    I’m sorry if you are experiencing this issue. Let me tag Kriesi and the rest of the support team.

    Regards,

    Ismael

    in reply to: Blog display #120222

    Hi,

    I think you have the wrong menu item. It is linked on the archive humor. You need your blog page. Go to Appearance > Menu > Delete the menu item Humor (Humeur) then find your actual blog page with Blog Posts element, change the label then save the menu.

    Regards,

    Ismael

    in reply to: cancel horizontal lines between layout elements #120542

    Hi,

    There are no lines when you insert a column under layout elements.

    Regards,

    Ismael

    in reply to: Font size questions #118867

    Hey,

    Glad it worked. :))

    Cheers,

    Ismael

    Hi,

    Can you give us a link to your website? The color pink is for the text color of inactive tabs. You this instead

    .tab {
    background-color: blue;
    color: pink !important;
    font-size: 20px;
    }

    Cheers,

    Ismael

    in reply to: removing opacity and icon overlay on slider hover #120475

    Hi,

    Are you using a plugin for your gallery?

    You can add this on your custom.css

    .gdl-gallery-image {
    opacity: 1 !important;
    }

    Cheers,

    Ismael

    in reply to: Menu in socket not visible on iPhone #120474

    Hi,

    Your socket looks fine on mobile view. Can you give us a screenshot?

    Regards,

    Ismael

    in reply to: Move gallery from Page to Portfolio Item? #120440

    Hi,

    I’m sorry but I don’t understand. What gallery are talking about? Can you give us a link to the website?

    You can set a gallery on your Portfolio Item. Use the Advance Layout Editor then insert the Gallery element.

    Regards,

    Ismael

Viewing 30 posts - 67,021 through 67,050 (of 67,460 total)