Forum Replies Created

Viewing 30 posts - 63,091 through 63,120 (of 64,006 total)
  • Author
    Posts
  • in reply to: Button Inconsistencies #124648

    Hi,

    Please add this on your custom.css.

    input[type="submit"] {
    border-radius: 3px;
    background-image: url(../images/layout/bg-button.png);
    background-repeat: repeat-x;
    background-position: 0 0;
    padding: 10px;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    border-style: solid;
    border-width: 1px;
    margin: 3px 0;
    line-height: 1.2em;
    position: relative;
    font-weight: 600;
    text-align: center;
    max-width: 100%;
    }

    Cheers,

    Ismael

    in reply to: Important Question…pls!! #124433

    Hi,

    If you want to remove the gallery thumbnails, please add this on your custom.css or Quick CSS

    .avia-gallery-thumb {
    display: none;
    }

    Cheers,

    Ismael

    in reply to: Can we move or expand the Search Bar? #122511

    Hey,

    Glad we could help. :)

    Have a nice day.

    Cheers,

    Ismael

    in reply to: Main offset #124639

    Hi,

    I check it further and I can see the gap on the main div. Add this on your custom.css

    /*

    Mobile Styles

    ================================================== */

    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

    @media only screen and (max-width: 900px) {
    /* Add your Mobile Styles here */
    #main {
    margin-top: 0;
    }
    }

    Regards,

    Ismael

    in reply to: Main offset #124638

    Hi,

    I checked your website on a mobile device but I don’t see the black border. Can you give us a screenshot? In what mobile device is this happening?

    Regards,

    Ismael

    in reply to: Header Placement #124607

    Hi,

    No, this is not possible at the moment. Please hire a freelance developer to modify the theme for you.

    Regards,

    Ismael

    in reply to: Header Logo Portfolio Installation Update Problems #124582

    Hi,

    a.) The background image should be 88px in height.

    b.) Your logo looks nice. After uploading the logo, you can select sizes before clicking “Insert Image as logo”.

    c.) Your portfolio looks fine on mobile devices. http://responsinator.com/?url=blog.blue2x.com%2Fportfolio-2%2F

    Let me tag Devin to check your site on an actual mobile device.

    Regards,

    Ismael

    Hi,

    I’m sorry but this is beyond the scope of our responsibility as a theme support. You need to hire a freelance developer to test the slider for you.

    Cheers,

    Ismael

    in reply to: Sidebar page "gray" highlight issue #124484

    Hi,

    I test this on my end. It might work.

    #top #main .sidebar {
    overflow: visible;
    width: 268px;
    }

    #top #main .sidebar_left .sidebar {
    border-right-style: solid;
    border-right-width: 2px;
    border-left: none;
    }

    #top .widgettitle {
    margin-left: -50px;
    padding-left: 50px;
    }

    Regards,

    Ismel

    in reply to: Sidebar page "gray" highlight issue #124483

    Hi,

    You mean the line below the widget title? I can’t think of any idea because the sidebar overflow is hidden so it is not possible to move elements to the left. It will break the layout when you set it to visible. It is possible if you can create a span inside the widget title and style it like a thin border, set the position to absolute. In order to do it, you need modify the default widgets on wp-includes > default-widgets.php. You need to ask someone else to do it for you.

    Regards,

    Ismael

    in reply to: "Spam" links showing up in testimonials #124477

    Hi,

    I got a 404 page when visiting the link http://www.tkfay.com/aboutus

    Regards,

    Ismael

    in reply to: Layer Slider Reponsive? #123635

    Hi,

    Please send the login details //…

    Include the work “Kriesi” on the subject. Add the link of this thread on your email.

    Regards,
    Ismael

    in reply to: Enfold Accordion Issues – Stopped Toggling #124192

    Hey,

    Glad it worked. :)

    Regards,

    Ismael

    in reply to: Icon Box (Left) v1.6 #124453

    Hi,

    Please add this on your custom.css or Quick CSS

    .iconbox .iconbox_content .iconbox_content_title {
    overflow: visible;
    }

    Did you modify anything on the css?

    Regards,

    Ismael

    in reply to: Footer widgets iPad portrait mode; text is cut off #124022

    Hi,

    Please add this on your custom.css or Quick CSS

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

    @media only screen and (max-width: 1024px) {
    /* Add your Mobile Styles here */
    .iconbox .iconbox_content .iconbox_content_title {
    margin: 0 0 10px 0;
    letter-spacing: 0;
    font-size: 13px;
    }

    .iconbox_content p {
    font-size: 10px;
    }

    }

    Cheers,

    Ismael

    in reply to: Avia Layout Editor Paused / Not responding #124450

    Hi,

    Do you have wordpress 3.5 or higher?

    Did you do the instructions on the link like increasing php memory limit and switching the Avia Builder to debug mode?

    Regards,

    Ismael

    in reply to: Problem on Advanced Layout Editor. #123915

    Hi,

    My bad. Please place the code below

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Do you have WP 3.5 or higher?

    Regards,

    Ismael

    in reply to: Gallery with no thumbnails below? #124295

    Hi,

    Just add this on your custom.css or Quick CSS

    .avia-gallery-thumb {
    display: none;
    }

    Regards,

    Ismael

    in reply to: How to add caption text in the Advanced Layerslider #124289

    Hi,

    You should probably Import the Dummy Data then check the default LayerSlider that comes with the theme. They usually use text images.

    Regards,

    Ismael

    in reply to: Can we move or expand the Search Bar? #122508

    Hi,

    Glad it work. Try this:

    .widget_product_search #searchform #searchsubmit {
    right: -40px;
    }

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .widget_product_search #searchform #searchsubmit {
    right: -80px;
    }
    }

    @media only screen and (min-width: 320px) and (max-width: 500px) {
    .widget_product_search #searchform #searchsubmit {
    right: 10px;
    }
    }

    Regards,

    Ismael

    in reply to: Iconbox problem #124135

    Hi,

    What do you mean it’s not working? I can see the icon box correctly.

    Regards,

    Ismael

    in reply to: Left sidebar #124044

    Hi,

    Please add this on your custom.css or Quick CSS

    .single-post .sidebar_left .inner_sidebar {
    margin-right: 10px;
    margin-left: 0;
    }

    Regards,

    Ismael

    in reply to: Show comments in blog index #98183

    Hi,

    You need to edit that page, look for Screen Options > check the Discussion option then “Allow Comments”.

    Regards,

    Ismael

    in reply to: How to create a 4 column portfolio like Enfold demo #124136

    Hi,

    Create a page. Go to Advance Layout Editor, under Content Element, insert the Portfolio Grid element. Configure the options like 4 columns, number of posts and select the category you want. You can now create portfolio items then set a featured image for each entry.

    To learn more about the theme, please watch this video: https://vimeo.com/channels/aviathemes

    Regards,

    Ismael

    in reply to: Make one slider for all pages #123931

    Hi,

    There is no option to apply a slider to all pages but you can use one kind of slider to all pages using the LayerSlider. Edit each page, go to Advance Layout Editor > Media Elements tab, insert the LayerSlider.

    Regards,

    Ismael

    in reply to: Translating search vol.2 #123801

    Hi,

    1.) I can’t find the translation for this area. Let me tag the rest of the support team.

    2.) You can find it on includes > admin > register-portfolio.php

    'name' => _x('Portfolio Items', 'post type general name','avia_framework'),

    Try to change the text.

    3.) Edit includes > loop-index.php, find this code

    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";

    Regards,

    Ismael

    Hi,

    Edit “Öffnungszeiten”, look for Screen Options (top right corner). Check the Excerpt option. Remove the excerpt there.

    Regards,

    Ismael

    in reply to: Unidentifiable posts in blog category #124079

    Hi,

    I visited the category link: http://www.test.eberlemichael.ch/wordpress/category/aktuell/

    I can see one post, title is “Knack den Tresor”.

    Regards,

    Ismael

    in reply to: Remove Page Up button #124088

    Hi,

    Just add this on your custom.css or Quick CSS

    #scroll-top-link {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Problem on Advanced Layout Editor. #123913

    Hi,

    Do you have a caching plugin? Please flush the settings.

    Set your Avia Builder to debug mode. Add this on functions.php

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will see the actual shortcode at the bottom of the Avia Builder.

    Also, try to turn the Avia Builder on and off. Click Screen Options (top right corner), check then uncheck Avia Builder a few times.

    Regards,

    Ismael

Viewing 30 posts - 63,091 through 63,120 (of 64,006 total)