Forum Replies Created

Viewing 30 posts - 61,891 through 61,920 (of 66,623 total)
  • Author
    Posts
  • in reply to: Problem with tables in text-blocks #196024

    Hi!

    Non-breaking spaces are produce when you press “Enter” while working on the Visual Editor. Please try to work on the Text or code editor. Please try to wrap your table in a div tag.

    Best regards,
    Ismael

    in reply to: Main menu text color #196022

    Hey!

    Have you tried it on the .htaccess file?

    Cheers!
    Ismael

    in reply to: How to manipulate alignment in color-sections #196021

    Hey!

    Please try this:

    .av_textblock_section {
    padding-top: 30px;
    }

    You can add a unique selector for each Avia Elements. Edit functions.php, find this code:

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

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');

    Edit any avia elements like Text Block then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-textblock”. You need this to adjust other text blocks’ top padding.

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

    .avia_textblock.awesome-textblock p {
    padding-top: 20px;
    }

    Regards,
    Ismael

    in reply to: Enfold Color Background with white content box #196018

    Hey lizybloom!

    You can add a unique selector for each Avia Elements. Edit functions.php, find this code:

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

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');

    Add the Text Block inside the Color Section. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-textblock”.

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

    .avia_textblock.awesome-textblock {
    background: rgba(255,255,255,.5);
    padding: 10px;
    width: auto;
    }

    Regards,
    Ismael

    in reply to: How to add Countdown Timer on Coming Soon page? #196015
    in reply to: Make logo not shrink when scrolling down page #196014

    Hi m!

    Edit js > avia.js, find this code on line 17:

    // decreases header size when user scrolls down
            avia_header_size();

    Replace it with:

    // decreases header size when user scrolls down
            //avia_header_size();

    Remove browser cache then reload the page a few times.

    Best regards,
    Ismael

    in reply to: Toggle Header Font Styling #196011

    Hi m!

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

    .js_active .toggler {
    font-size: 14px;
    font-weight: bold;
    color: blue !important;
    }

    Cheers!
    Ismael

    in reply to: Need Header Left Align CSS Code #196010

    Hi DoGrinDigital!

    Do you want to move the whole header on the left? I’m not sure if this is going to work but you can use this:

    #header {
    margin-left: -200px;
    }

    Please post a screenshot of what you’re trying to do.

    Best regards,
    Ismael

    in reply to: LayerSlider problems #195941

    Hi nimrodmadar!

    Did you set the Global Settings > Slider width to 100%? Don’t forget to set the width of Global Settings > Layers Container. Use pixels for layer placement or position.

    Best regards,
    Ismael

    in reply to: Google font error #195936

    Hi!

    I don’t know why you’re getting that url but please check header.php, find this code:

    <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=EntypoRegular" media="all" />
    

    Remove it. Do you have any font plugins of some sort? Please deactivate all plugins.

    Best regards,
    Ismael

    in reply to: Masonry gallery short code #195935

    Hey wholereneducation!

    Unfortunately, it is not possible at the moment. You can visit werkpress to modify the fullwidth masonry element for you.

    Best regards,
    Ismael

    in reply to: Problem with tables in text-blocks #195728

    Hi!

    Are you working on a the Visual Editor? You should be working on the Text editor while editing HTML tags to avoid the spaces. The Table element does support images. Edit a row then insert the img tag:

    <img width="100" height="100" src="http://www.shop.hidra.com.tr/wp-content/uploads/image_6186_1.jpg">

    Don’t forget to define the width and the height.

    Cheers!
    Ismael

    in reply to: Megamenu #195724

    Hi!

    20,000 seems to be an overkill. Anyway, try to increase the php memory limit: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,
    Ismael

    Hi!

    Yes, you need to copy the includes folder including the loop-index.php file.

    Regards,
    Ismael

    in reply to: Gallery #195702

    Hey!

    1.) I think number 1 is doable. Add this on your custom.css or Quick CSS:

    #top div .avia-gallery .avia-gallery-big {
    width: 80% !important;
    min-height: 590px !important;
    float: left;
    clear: none !important;
    }
    
    #top div .avia-gallery .avia-gallery-big img {
    min-height: 570px;
    }

    2.) You need to hire someone like Yigit said for number 2.

    Regards,
    Ismael

    Hey tasoskouk!

    Please add this on your custom.css or Quick CSS:

    .four.units.single-product-main-image.alpha {
    overflow-y: hidden;
    }

    Regards,
    Ismael

    in reply to: Avia Youtube Video – Autoplay #195699

    Hey!

    Sorry. You can enclose the iframe on this div:

    <div class="avia-video avia-video-16-9  " itemprop="video" itemtype="http://schema.org/VideoObject">
    <div class="avia-iframe-wrap">
    <iframe width="1500" height="844" src="http://www.youtube.com/embed/G0k3kHtyoqc?feature=oembed&wmode=opaque" frameborder="0" allowfullscreen=""></iframe>
    </div>
    </div>

    Remove the iframe code and replace it with yours. Set the the same width and height on the example above. It should be responsive after.

    Regards,
    Ismael

    in reply to: Main menu left, logo right (what was your fix?) #195697

    Hi nock!

    Please add this on your custom.css or Quick CSS:

    div .logo {
    position: absolute;
    right: 0;
    }
    
    .main_menu {
    position: absolute;
    left: 0;
    }

    The logo doesn’t disappear when scrolling.

    Cheers!
    Ismael

    in reply to: Cannot change color scheme #195694

    Hey!

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

    .main_color b {
    color: #ff3640;
    }
    
    .header_color .main_menu ul:first-child > li > a {
    color: #ff3640;
    }

    Please check wp-content/uploads/dynamic_avia/enfold.css. Set the permission to 755.

    Regards,
    Ismael

    in reply to: full width horizontal rules like in demo #195690

    Hi ShortieD!

    The demo is using the Color Section element which renders a bottom border automatically.

    Best regards,
    Ismael

    in reply to: Colour Section Page Background Problem #195689

    Hey!

    I’m not sure what is causing the issue but I fixed it by adding a text block between the two layer slider. I hide the text block section with a custom css.

    http://mealgram.com.au/wordpress/

    Best regards,
    Ismael

    in reply to: Enlarging logo isn't working #195684

    Hi!

    You can add this on your custom.css or Quick CSS to adjust the height of the header and the logo:

    /*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
    #header_main .container, .main_menu ul:first-child > li a{ height:150px; line-height: 150px; }

    Adjust the height and the line-height if necessary.

    Cheers!
    Ismael

    in reply to: best way to call new google font stylesheet #195682

    Hey ShortieD!

    Please add this on functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic';
    return $fonts;
    }

    You’ll be able to select the new font on Enfold > Styling > Heading and Body font.

    Best regards,
    Ismael

    in reply to: Google font error #195681

    Hi glozemedia!

    I’m not sure if this is important because when I check the website it is using the google font Open Sans without any problem.

    Best regards,
    Ismael

    in reply to: Text box element centered when in responsive tablet view? #195680

    Hey!

    1.) The paragraphs are now using the Open Sans font when I checked the website.

    2.) Please use this:

    .av-special-heading {
    margin-top: 20px;
    }

    3.) Please add this on your custom.css or Quick CSS:

    .post-meta-infos {
    display: none;
    }

    4.) What type of Blog Style do you have?

    Regards,
    Ismael

    in reply to: Avia Youtube Video – Autoplay #195675

    Hey openpotion!

    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

    in reply to: Contact Form 7 issues #195670

    Hey!

    The login details are incorrect. Please check.

    Regards,
    Ismael

    in reply to: change 'author archive for' #195666

    Hey!

    I’m sorry but I’m not sure what you want to do. Can you please post a link to a sample author page or archive page? A screenshot will help.

    Regards,
    Ismael

    in reply to: Editing the design of the blog page #195665

    Hey!

    You can add widgets on Appearance > Widgets. Add widgets on the Sidebar Blog widget area. You can add this on your custom.css or Quick CSS to create a bottom border after each posts:

    .template-blog .post_delimiter {
    border-bottom: 1px solid gray;
    }

    Cheers!
    Ismael

    in reply to: width images masonry gallery #195663

    Hi!

    I’m sorry but I can’t reproduce the issue on my end using the Perfect Automatic Masonry and Boxed Layout 1030px width. Can you please give us the link to the actual page?

    Regards,
    Ismael

Viewing 30 posts - 61,891 through 61,920 (of 66,623 total)