Forum Replies Created

Viewing 30 posts - 66,061 through 66,090 (of 67,030 total)
  • Author
    Posts
  • in reply to: Content Overlapping #125057

    Hi,

    It is because you have an inline font-size of 50px and 30px. It is way too big for mobile devices. Give the <span> tag a unique css selector. Something like this:

    <p style="text-align: center;"><span class="paragraph-1A">Example Content</span></p>
    <p style="text-align: center;"><span class="paragraph-1B">Example Content More Content</span></p>

    Then style it on your custom.css or Quick CSS

    .paragraph-1A {
    color: #333; font-family: 'League Gothic', auto; font-size: 50px;
    }

    .paragraph-1B {
    color: #333; font-family: 'League Gothic', auto; font-size: 30px;
    }

    Then add Media Queries to target the span on mobile devices.

    /*
    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: 767px) {
    /* Add your Mobile Styles here */
    .paragraph-1A {
    color: #333; font-family: 'League Gothic', auto; font-size: 20px;
    }

    .paragraph-1B {
    color: #333; font-family: 'League Gothic', auto; font-size: 10px;
    }
    }

    Regards,

    Ismael

    in reply to: Special Heading Light Shortcode #124836

    Hi,

    Kriesi is working on the symbol translation. It gives an error when you use those symbols. It is working using the html codes.

    http://www.ascii.cl/htmlcodes.htm

    ! = & #33;
    ' = & #39;

    [av_heading heading='!Hello' tag='h3' color='' style='' padding='10']

    Regards,

    Ismael

    in reply to: Smaller padding around Images #124937

    Hi,

    The side images doesn’t shrink. Actually, the code increased the size of the one_half column then decrease the left margin, so technically the red shoes is much bigger.

    .page-id-1668 .av_one_half {
    margin-left: 0.0001%;
    margin-right: -3%;
    width: 50%;
    }

    This code decrease the left margin of one_fourth column, I will add the code to make them bigger.

    .page-id-1668 .av_one_fourth {
    margin-left: 3%;
    width: 23.5%;
    }

    This code makes sure that the first column has no left margin

    .page-id-1668 .av_one_fourth.first {
    margin-left: 0;
    }

    This code to decrease the top padding

    .page-id-1668 .template-page.content.twelve.alpha.units {
    padding-top: 10px;
    }

    Regards,

    Ismael

    in reply to: Enfold Post Slider #123361

    Hi,

    I checked the post “The Mistery of the Universe – Interview with Steve Durbach”.

    It looks fine on Firefox and Internet Explorer 8. I’m sure it will look good on IE9 and 10 too.

    Regards,

    Ismael

    in reply to: No texts are found in the sample pages. #125010

    Hi,

    Do you have WordPress 3.5 or higher? Enfold theme will not work properly on older versions of wp.

    Please increase the wordpress memory limit.

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    You can also set the Avia Builder to debug mode. Edit functions.php, find this code on line 16

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

    Add the debug code below.

    //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 below the Avia Builder.

    If you still can’t see the Avia Builder when editing a page, look for Screen Options (top right corner), check the Avia Builder.

    Watch these videos: https://vimeo.com/channels/aviathemes

    Regards,

    Ismael

    in reply to: Blog thumbnails not cropping properly #125008

    Hello,

    Please add this on your custom.css or Quick CSS

    .attachment-square.wp-post-image {
    width: 100% !important;
    height: 100% !important;
    }

    Regards,

    Ismael

    in reply to: Layout Builder Keeps Erasing #125004

    Hi,

    Sorry for that.

    Please increase the wordpress memory limit.

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    You can also set the Avia Builder to debug mode. Edit functions.php, find this code on line 16

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

    Add the debug code below.

    //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 below the Avia Builder.

    Regards,

    Ismael

    in reply to: "Features" Page on Themeforest Demo #124980

    Hi,

    @juganrising: Thanks for the tip. :)

    @jayredliner: We recommend to Import the Dummy data to learn more about how the theme works. You can also watch these videos:

    vimeo.com/channels/aviathemes

    Regards,

    Ismael

    in reply to: Header menu intersecting with logo #124999

    Hi,

    @juganrising: Thanks for the help. :)

    @marjan2k: You can follow the links to fix the issue.

    You can also add this on your custom.css or Quick CSS to fix the ovarlapping menu issue.

    /*
    Desktop Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the desktop view of your site */

    @media only screen and (max-width: 1138px) and (min-width: 768px) {
    .responsive .main_menu ul:first-child > li > a {
    padding: 0 6px;
    font-size: 12px;
    }
    }

    Regards,

    Ismael

    in reply to: Bug In Viewing Portfolio #124508

    Hey,

    The div .avia-video .avia-iframe-wrap creates an inline padding style with value of 75%. Dude’s code overrides the default styling to padding: 0. It will only affect the video.

    Regards,

    Ismael

    in reply to: Still having issues with changing heading colors #124222

    Hi,

    Iconbox title:

    .main_color .iconbox_content_title {
    color: red;
    }

    Icon lists:

    .alternate_color .iconlist_title {
    color: red;
    }

    Regards,

    Ismael

    in reply to: Using Excerpts #124970

    Hi,

    Edit the posts, on Screen Options, check the Excerpt option. You can also use the <!–more–> tag.

    Regards,

    Ismael

    in reply to: is there supposed to be cart button showin up? #124925

    Hi,

    Yes, there should be a Cart on the upper right corner of your site. You need to install the woocommerce plugin.

    Regards,

    Ismael

    in reply to: Contact Form — Check Box #124919

    Hi,

    Open framework > php > class-form-generator.php, find this code on line 243

    $this->elements_html .= '    <input '.$checked.' name="'.$id.'" class="input_checkbox '.$element_class.'" type="checkbox" id="'.$id.'" value="true"/><label for="'.$id.'">'.$element['label'].$required.'</label>';
    

    Replace it with:

    $this->elements_html .= '    <input checked="checked" '.$checked.' name="'.$id.'" class="input_checkbox '.$element_class.'" type="checkbox" id="'.$id.'" value="true"/><label for="'.$id.'">'.$element['label'].$required.'</label>';
    

    Regards,
    Ismael

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

    Hey,

    Glad you figured it out. :)

    Cheers,

    Ismael

    in reply to: Special Heading Light Shortcode #124833

    Hi,

    These are the shortcodes

    Classic Style

    [av_heading heading='Hello' tag='h3' color='meta-heading' style='blockquote classic-quote' padding='10']

    Modern Style

    [av_heading heading='Hello' tag='h5' color='' style='blockquote modern-quote' padding='15']

    Default Style

    [av_heading heading='Hello' tag='h5' color='' style='' padding='15']

    Regards,

    Ismael

    in reply to: Layout Builder – Apply individual CSS styles #124794

    Hi,

    You mean the Avia Builder on the admin side?

    Yeah, sure. Edit wp-contentthemesenfoldconfig-templatebuilderavia-template-builderassetscss

    Look for shortcode_insert_button styling. You can use the child and siblings css selector to target each element. Also note that there are four tabs which you can target by .avia-tab selector. Layout element tab will be avia-tab-1, Content element tab will be .avia-tab-2 and so on. For example if you want to style Text Block element, place this code below the shortcode_insert_button styling:

    .avia-tab-2 .shortcode_insert_button:first-child {
    background: red;
    }

    For 1/3 column element under Layout elements, you can use this

    .avia-tab-1 .shortcode_insert_button:nth-child(3) {
    background: blue;
    }

    Regards,

    Ismael

    Hi,

    You can change them manually on your custom.css or Quick CSS.

    For the icon background

    .iconbox_icon.heading-color.avia-font-entypo-fontello {
    background-color: red;
    }

    For the iconbox title

    .main_color .iconbox_content_title {
    color: red;
    }

    alternate:

    .alternate_color .iconbox_content_title {
    color: blue;
    }

    For the iconbox content

    .main_color .iconbox_content p {
    color: red;
    }

    alternate:

    .alternate_color .iconbox_content p {
    color: blue;
    }

    Regards,

    Ismael

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

    Hey,

    Glad it worked. :)

    You can use Media Queries for the logo. The custom.css on Enfold 1.6 has a ready made Media Query script.

    Cheers,

    Ismael

    in reply to: Change size of menu bar/field #124791

    Hi,

    Please add this on your custom.css

    .responsive #header_main_alternate .mobileMenu {
    margin: 16px auto;
    }

    .responsive #top .mobileMenu {
    width: auto;
    padding: 10px 4px;
    }

    Regards,

    Ismael

    in reply to: Adding Paypal Button to pricing table #124238

    Hi,

    Please send it on //…

    Include the word “Kriesi” on the subject. Add the url of this thread on your email.

    In what page is this happening?

    Regards,
    Ismael

    in reply to: Trouble with accordian feature #124227

    Hi,

    My bad. Please find this code on functions.php

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

    Place the debug code below.

    When you edit a page or a portfolio post, go to Advance Layout Editor. Under the Avia Builder you will see the actual shortcode there.

    Regards,

    Ismael

    in reply to: Remove Space above/below slider #124964

    Hi,

    Please add this on your custom.css or Quick CSS

    .fixed_header.social_header #main {
    padding-top: 90px;
    }

    .template-page.content.twelve.alpha.units {
    padding-top: 0;
    }

    Regards,

    Ismael

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

    Hey,

    Weird, because when I test the code it works fine.

    Regards,

    Ismael

    in reply to: Change main menu font #124961

    Hi,

    You can use this on your custom.css

    .main_menu ul:first-child > li > a {
    font-family: 'Metrophobic', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    In this case, we use the “Metrophobic” font.

    Regards,

    Ismael

    Hi,

    Please visit this link:

    https://kriesi.at/support/topic/custom-widget-areas-not-working-after-upgrade-to-15

    Follow Dude’s instruction. It might fix the issue. Sometimes widget settings get stuck for no apparent reason.

    Regards,

    Ismael

    Hi,

    Please add this on your custom.css

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

    OR

    Inspect your homepage using Chrome. Click Inspect Element, scroll to the <body> tag. Look for something like this inside the body tag.

    class="page page-id-1122

    .page-id-1122 is the unique body class of your homepage. Add this on your custom.css

    .page-id-1122 .post-meta-infos {
    display: none;
    }

    Your home page id might be different from mine. Please check yours.

    Regards,

    Ismael

    in reply to: Boxes Color #124918

    Hi,

    What boxes? Can you give us a link or a screenshot?

    Regards,

    Ismael

    in reply to: Use Multiple Blog Styles #124940

    Hi,

    You mean the single post view? No, there is no way to use the Blog styles on single post view. You can only select post formats like standar, link, gallery, video etc. I suggest you use Portfolio posts to create different post styles, you can use the Advance Layout Editor for each post.

    Regards,

    Ismael

Viewing 30 posts - 66,061 through 66,090 (of 67,030 total)