Viewing 30 results - 18,601 through 18,630 (of 18,737 total)
  • Author
    Search Results
  • Hi Ismael,

    I can’t seem to find the base.php file in the editor screen inside the WordPress admin panel. I can’t access and edit this file from there?

    #24290
    bakbek
    Participant

    Hi,

    It seems that the post titles are not H1 (it shows as #top h2 a). I would like to make the post title to be H1 tags and also to increase the size of the font as the title is much smaller than any H2 you use inside the post content.

    Thanks.

    #122743

    Hi,

    Dont use a font size in pixels, instead use em. i think 1.6em = 14px. But em are responsive measure of distance so convert all your pixel measurements, especially for fonts. Play around with em till you get the right size. Maybe start with 1.9em

    Thanks,

    Nick

    Hi,

    You can edit base.php, look for #Typography section.

    You can use Media Queries to target the special heading.

    /* All Mobile Sizes (devices and browser) */
    @media only screen and (max-width: 767px) {
    .av-special-heading h3 {
    YOUR STYLE HERE
    }
    }

    Regards,

    Ismael

    #122687

    Hi Andy,

    There isn’t anything we can do to change the way google fonts are rendered. Some of them at various sizes just look bad unfortunately.

    Regards,

    Devin

    bakbek
    Participant

    Hi,

    I would like to know how to increase the font sizes in the theme (especially the regular text font size as I find it too small).

    Also, I noticed that when using a Special Heading with default style it isn’t responsive (other 2 styles are).

    Thanks.

    #122742

    In reply to: Add menu description

    1) Enfold does not support such a menu description. You can try to use html code to “shrink” your menu item link text (eg with

    <span style="font-size: 10px">My description</span>

    2) You can change the color of the dropdown with

    #top .header_color .main_menu .menu ul li a{
    background-color: #333;
    color: #fff;
    }

    Adjust the color values and insert the code into the quick css field.

    #120146

    Hi,

    Oh I read about VMI a long while ago, can’t remember what. Oh yeh, Thailand army has a lot of officers who are graduates from your school. Read it on flight to Bangkok and … But I digress.

    There’s something off on the site. I can’t put my finger on it, seems to be a delay somewhere as I am jumping between media queries, the mobile menu is just a tad slow than normal, and some things are not as smooth and stretchy (this is on Chrome) though visitors won’t notice that since they are in the same screen size, it’s unusual and may be part of the issues that show up on earlier IEs but are managed on Chrome.

    You have some errors

    Failed to load resource: the server responded with a status of 404 (Not Found) http://admissions.vmi.edu/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff

    Blocked a frame with origin "http://media.virtualrabbit.com" from accessing a frame with origin "http://admissions.vmi.edu". Protocols, domains, and ports must match.

    Second is Chrome nonsense error but first should be fixed. That’s a file for the fontello glyphs/fonts that create the icons in the theme its IE9+ . You probably don’t have the correct mime type in your .htaccess file for .woff file i would guess …

    You are running on IIS 7.5/2008 Server have 128meg wp/ram . Should be ok

    =====

    http://i.imgur.com/xKA6A5K.png <– this is how i am seeing this page through ie8 and xp (emulated). if you see it any differently can you post a screenshot like this? Well besides the two run on videos, a few missing backgrounds. missing toggles, and of course that 3d campus tour, website background, thingy below the menu,

    Your videos are messed up on Chrome even because the first one (push-ups training) is not in the same aspect ratio as the other 3. So it needs to be re-encoded in the same aspect ratios as the other 3, otherwise at best it will have black lines on two sides http://www.clipular.com/c?6891027=C3O7QXuFTjYv9qCuKT3HxSvT-AE&f=.png

    .avia-video iframe, .js_active .avia-iframe-wrap iframe, div .avia-video .avia-iframe-wrap {
    position: relative;
    width: 320px;
    height: 186px;
    }

    try this css at the end of /css/custom.css

    I don’t have an ie8 but i think most of these can be fixed though not sure about the 3d tour, ie8 users are used to shades of grey and error messages just about anywhere they go online, so having complex animation will only confuse and bewilder them.

    Thanks,

    Nick

    #122381

    In reply to: Calculate font sizes

    My bad I got something completely wrong. I was thinking about rem rules not em. And furthermore I didn´t realize that

    font:13px/1.65em

    is shorthand CSS for

    font-size:13px

    line-height:1.65em

    So there are absolute font sizes used instead of relative. Got it now.

    #114644

    the tab and accordion modules are too restrictive … i would love to embed any other module inside them.

    tabs and accordion with icon list, team member info, images, video, progress bar etc etc

    i would love to be able to set the menu and mega menu font size.

    i would love parallax background option which can be defined for each page

    Nick Edit: You can stack other shortcodes inside tab or accordion.
    You would first need to enter debug mode in /config-templatebuilder/config.php line 45
    (as explained in the lines above it). and then you would just paste
    the shortcode for whatever you need inside the shortcode for tabs
    for example this is 2 easy sliders, one inside each tab, and tab
    inside a single column:

    #122380

    In reply to: Calculate font sizes

    Actually I guess Kriesi doesn’t want to scale down the default size to 13px/0.813em but he used those font size & line height values which gave him the best results (nice typography, readability, etc.). Maybe some articles about typography will help you: http://webdesignerwall.com/tutorials/typographic-contrast-flow , http://coding.smashingmagazine.com/2009/04/03/8-simple-ways-to-improve-typography-in-your-designs/ , http://ilovetypography.com/2008/02/28/a-guide-to-web-typography/ and http://speckyboy.com/2009/08/31/50-essential-web-typography-tutorials-tips-guides-and-best-practices/

    #122605

    You can use the font icon shortcode and wrap it into a paragraph with rounded corners like:

    <p style="border-radius: 20px; background: #333; height: 40px; line-height: 29px; float: left; padding: 10px;">
    [av_font_icon color="#1e73be" icon="31" size="20px"]
    </p>

    #122248

    Hi,

    @Michael Oeser: Thanks for the tip. I think it is a good idea.

    @purstodio: You can use Media Queries to target the iPad view.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive .main_menu ul > li > a {
    font-size: 11px;
    }
    }

    Add the code on your custom.css or Quick CSS.

    Regards,

    Ismael

    #24117

    Topic: Calculate font sizes

    in forum Enfold
    Michael Oeser
    Participant

    I need to change some of the font sizes which I did in the CSS field of the themes options and basically that´s fine. But I simply entered pixel dimensions whilst enfold uses both px/em values.

    What I don´t get is how you calculated those values. For example for the body Enfolds defaul CSS says

    font: 13px/1.65em

    The reset sets the default size to 100% which is normally 16px. 13px would then equal 0.813em and not 1.65em. I´m sure I´m missing something but I don´t get what.

    Cheers

    Michael

    #122022

    Hi,

    I tested this code, place it on a Div/Video. It works ok but you are correct they are not responsive. You need to add a special class then use Media Queries to make them responsive.

    <div class="avia-button-wrap avia-button-center avia-builder-el-2 el_after_av_textblock avia-builder-el-last "><a href="http://www.thisISaLink.com" class="avia-button avia-icon_select-yes avia-color-red avia-size-medium avia-position-center " target="_blank"><span class="avia_button_icon avia-font-entypo-fontello">♥</span><span class="avia_iconbox_title">Click me</span></a></div>

    Regards,

    Ismael

    #122099

    I’ve tried the adding the code to the css in the Style section. It doesn’t make any difference – it still won’t go white.

    I’ve also tried using a PNG text image but I’m having trouble with the sizes – they are too big even when I make them the right font in the editor.

    Any more suggestions? It’s getting annoying.

    #121981

    Hi,

    You are going about it all wrong. What you need to do is install Chrome Developer Tools. This is what we use to modify CSS live. Easy to use and no need to know much css even. Take a look at the videos and in 15 minutes you will solve your problem. http://www.youtube.com/watch?v=TvJflwF8eYM and http://www.youtube.com/watch?v=dNsM2PUkZ1g

    To create a child theme. Just use this plugin, and then look at the files the plugin made, compare them to yours and you will see where the problem was http://wordpress.org/plugins/child-themify/

    CSS is based on 2 concepts specificity and cascade. a naked h1 tag has little specificity and chances are (100%) that after your h1 tags , the theme’s original h1 tag definitions will come later in the cascade and will override your h1 tags since in a child theme they will be the very first css processed in the cascade.

    Thanks,

    Nick

    #122019

    Hi,

    @formateins: Thanks.

    @olylax21: Shortcode is not going to work. You should use the html generated by the button shortcode. It looks something like this.

    <div class="avia-button-wrap avia-button-center avia-builder-el-2 el_after_av_textblock avia-builder-el-last "><a href="http://www.thisISaLink.com" class="avia-button avia-icon_select-yes avia-color-red avia-size-medium avia-position-center " target="_blank"><span class="avia_button_icon avia-font-entypo-fontello">♥</span><span class="avia_iconbox_title">Click me</span></a></div>

    Regards,

    Ismael

    #121224

    Okei, here is my custom css:

    .main_menu ul:first-child > li > a {

    display: block;

    text-decoration: none;

    padding: 0 13px;

    font-weight: normal;

    font-size: 16px;

    font-weight: 600;

    font-size: 16px;

    }

    #top #menu-item-search.menu-item-search-dropdown>a {display:none;}

    #header_meta {

    display: none;

    }

    #121728

    In reply to: Sidebar Background

    Thank your Ismael for your time.

    Actually, the code is working but the problem is when I get back to the admin panel, everything is fucked. I have modify a bit the code, because the one up there didn’t have the bottom-border radius.

    What I want is to use that code in a 1/3 panel. The actual code that I use is that. If you don’t understand what I mean, I can send you my login/pass and you’ll be able to take a look at it.

    thank you.


    <div class=”flex_column av_one_third avia-builder-el-7 el_after_av_two_third avia-builder-el-last “><div class=”avia_textblock”>

    <div style=”color: #ffffff; background-color: #434c56; padding: 20px; border-top-left-radius: 25px; border-top-right-radius: 25px; margin-bottom: -40px; text-align: center;”>

    <p style=”font-size: 15px;”>ContentCTA</p>

    <p style=”font-size: 15px;”>Or simply fill in your details below

    and we will get back to you.</p>

    <p style=”text-align: center; font-size: 15px;”>You have nothing to lose and

    only new business to gain.</p></div>

    </div>

    <div style=”color: #ffffff; background-color: #434c56; padding: 20px; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; margin-bottom: -40px; text-align: center;”>

    <form action=”http://symbioticmarketing.co.uk/services/corporate-blogging-copywriting/&#8221; method=”post” class=”ajax_form avia-builder-el-9 el_after_av_textblock avia-builder-el-last ” data-avia-form-id=”1″>

    <fieldset>

    <p class=”” id=”element_avia_name_1″><label for=”avia_name_1″>Name*</label> <input name=”avia_name_1″ class=”text_input is_empty” type=”text” id=”avia_name_1″ value=””></p>

    <p class=”” id=”element_avia_e-mail_1″><label for=”avia_e-mail_1″>E-Mail*</label> <input name=”avia_e-mail_1″ class=”text_input is_email” type=”text” id=”avia_e-mail_1″ value=””></p>

    <p class=”” id=”element_avia_contact_number_1″><label for=”avia_contact_number_1″>Contact Number*</label> <input name=”avia_contact_number_1″ class=”text_input is_empty” type=”text” id=”avia_contact_number_1″ value=””></p>

    <p class=”” id=”element_avia_sign_up_for_our_email_newsletter_1″> <input name=”avia_sign_up_for_our_email_newsletter_1″ class=”input_checkbox ” type=”checkbox” id=”avia_sign_up_for_our_email_newsletter_1″ value=”true”><label for=”avia_sign_up_for_our_email_newsletter_1″>Sign up for our email newsletter</label></p>

    <p class=”” id=”element_avia_message_1″> <label for=”avia_message_1″ class=”textare_label hidden textare_label_avia_message_1″>Message*</label> <textarea name=”avia_message_1″ class=”text_area is_empty” cols=”40″ rows=”7″ id=”avia_message_1″></textarea></p>

    <p class=”hidden”><input type=”text” name=”avia_avia_username_1″ class=”hidden ” id=”avia_avia_username_1″ value=””></p>

    <p class=””><input type=”hidden” value=”1″ name=”avia_generated_form1″><input type=”submit” value=”Submit” class=”button”></p>

    </fieldset>

    </form>

    <div id=”ajaxresponse_1″ class=”ajaxresponse ajaxresponse_1 hidden”></div>

    </div>

    </div>

    #24019
    olylax21
    Participant

    I am trying to add a button shortcode to a layer inside the LayerSlider. It will not render the button, it just displays the shortcode.

    [av_button label='Click me' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']

    #24007
    pgamet
    Participant

    Hi,

    I want to make all the text (headers, paragraphs, etc) in my site larger. I created a style.css and played with changed the p, h1, and body tags but changes don’t show up. Do I have the style sheet attached incorrectly? Any tips about the responsive nature of fonts. I see you have the body set for px and em. Not sure if there is a magic formula for changing these two numbers. Thanks!

    I created a child theme and put this in the css:

    /*

    Theme Name: Enfold Child

    Theme URI: http://example.com/

    Description: Child theme for Enfold

    Author: Paige Gamet

    Author URI: http://example.com/about/

    Template: enfold

    Version: 0.1.0

    */

    @import url(“../enfold/style.css”);

    body {font: 24px/1.9em }

    p {font-size: 30px;}

    h1 { font-size: 120x; line-height: 2.1em; margin-bottom: 20px;}

    h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }

    h3 { font-size: 19px; line-height: 1.1em; margin-bottom: 8px; } /*28*/

    h4 { font-size: 17px; line-height: 1.1em; margin-bottom: 4px; } /*21*/

    h5 { font-size: 16px; line-height: 1.1em; } /*17*/

    h6 { font-size: 14px; line-height: 1.1em; }

    .main_menu .menu li a strong {

    font-size: 25px;

    }

    #114643

    So I drop also a few notes… :)

    1. Avia Builder – More editor comfort

    Include an option or function to make the elements at the top “sticky”. Maybe a small pin icon to fix it manually for the customer or by checking the scroll event when editing a post/page/cpt. Other form elements needs to be handled so the builder is always on top. Pages mostly do get very long and you have to scroll a lot at this point.

    Short video of the idea: http://www.screenr.com/zl7H

    2. Avia Builder – Debug features

    Add a button (maybe beside the template button) to activate the debug field. Right beneath the field a memory allocated info could be added. This would save you guys alot of support requests… :)

    3. Avia Builder – Copy/Paste

    Add another Button to the builder wich enables copying of the whole post/page/cpt-layout so the shortcodes and content can be copied to a new post or a different site. Should be only a few lines of JS.

    4. Avia Framework Options

    Please extend the options provided. As mentioned from other users before, there are several things just missing, which could be easily added (like Google fonts, etc.). Additionally, I would like to have:

    – some input fields to trim certain CSS aspects (margins, paddings, maybe also top and left settings)

    – wpautop enable/disable

    – Blog settings (more settings related to the blog page itself outside of builder)

    – Adding text-shadows and MAYBE box-shadows as option (simple input field with rgba color picker)

    – Font size settings (bodytext plus all headers)

    Should be enough for now :)

    #121727

    In reply to: Sidebar Background

    Hi,

    This is the code for that area.

    <div class="flex_column av_one_third   avia-builder-el-7  el_after_av_two_third avia-builder-el-last  "><div class="avia_textblock">
    <div style="color: #ffffff; background-color: #434c56; padding: 20px; border-top-left-radius: 25px; border-top-right-radius: 25px; margin-bottom: -40px; text-align: center;">
    <p style="font-size: 15px;"><img class="alignnone wp-image-1928" alt="ContentCTA" src="http://symbioticmarketing.co.uk/wp-content/uploads/2013/04/ContentCTA.png" width="290" height="152"></p>
    <p style="font-size: 15px;">Or simply fill in your details below<br>
    and we will get back to you.</p>
    <p style="text-align: center; font-size: 15px;">You have nothing to lose and<br>
    only new business to gain.</p></div>
    </div>
    <form action="http://symbioticmarketing.co.uk/services/corporate-blogging-copywriting/" method="post" class="ajax_form avia-builder-el-9 el_after_av_textblock avia-builder-el-last " data-avia-form-id="1">
    <fieldset>
    <p class="" id="element_avia_name_1"><label for="avia_name_1">Name*</label> <input name="avia_name_1" class="text_input is_empty" type="text" id="avia_name_1" value=""></p>
    <p class="" id="element_avia_e-mail_1"><label for="avia_e-mail_1">E-Mail*</label> <input name="avia_e-mail_1" class="text_input is_email" type="text" id="avia_e-mail_1" value=""></p>
    <p class="" id="element_avia_contact_number_1"><label for="avia_contact_number_1">Contact Number*</label> <input name="avia_contact_number_1" class="text_input is_empty" type="text" id="avia_contact_number_1" value=""></p>
    <p class="" id="element_avia_sign_up_for_our_email_newsletter_1"> <input name="avia_sign_up_for_our_email_newsletter_1" class="input_checkbox " type="checkbox" id="avia_sign_up_for_our_email_newsletter_1" value="true"><label for="avia_sign_up_for_our_email_newsletter_1">Sign up for our email newsletter</label></p>
    <p class="" id="element_avia_message_1"> <label for="avia_message_1" class="textare_label hidden textare_label_avia_message_1">Message*</label> <textarea name="avia_message_1" class="text_area is_empty" cols="40" rows="7" id="avia_message_1"></textarea></p>
    <p class="hidden"><input type="text" name="avia_avia_username_1" class="hidden " id="avia_avia_username_1" value=""></p>
    <p class=""><input type="hidden" value="1" name="avia_generated_form1"><input type="submit" value="Submit" class="button"></p>
    </fieldset>
    </form>
    <div id="ajaxresponse_1" class="ajaxresponse ajaxresponse_1 hidden"></div>
    </div>

    He used border-top-left-radius: 25px; border-top-right-radius: 25px;.

    http://border-radius.com/

    Regards,

    Ismael

    #120517

    Thanks, Devin. I recreated all the tables with no success. The problem persists. My best guess so far is that is a problem in one of these classes:

    @media only screen and (max-width: 767px)
    {
    .responsive div .avia-data-table table,
    .responsive div .avia-data-table tbody,
    .responsive div .avia-data-table tr,
    .responsive div .avia-data-table td,
    .responsive div .avia-data-table th{display:block; border-top:none; border-right:none; border-left:none; text-align: center;}
    .responsive .avia-data-table{border-style:solid; border-width: 1px;}
    .responsive .avia-data-table .avia-pricing-row .avia-desc-col{text-align: center;}
    .responsive .avia-data-table .avia-button-row, .responsive .avia-data-table tr:first-child th{display:none;}
    .responsive .avia-data-table td:before {
    display:block;
    font-style: italic; font-size: 11px;
    }

    .responsive .avia-data-table td {
    position: relative;
    }
    }

    #119593

    Hi,

    For create&design, the solution is to use EM and not PT to define the size of the font since em is responsive. If you changed the font size to 5.5em it will shrink . Not sure if that font is working on not since removing the font family doesn’t change anything for me.

    h6 {
    font-family: BebasNeueRegular,Geneva,Arial,Helvetica,sans-serif!important;
    font-size: 5.5em !important;
    }

    =====================

    for more space please open up /js/avia.js and find line 766 and change it to look like. You can change the 116 to a number you want the height of the header to be. Start off with changing it to the height of your logo and work up from there.

    el_height       = 116,

    Thanks,

    Nick

    #120061

    Hi!

    melonmelon thanks for helping us out :)

    Regards,

    Peter

    #120060

    Thanks

    #120059

    quick-css:

    p {font-size: 20px;}

    #23503
    boag
    Participant

    Hi,

    I would like the paragraph font size to be slightly larger. How do I set the default paragraph font size to something different?

    Thanks

Viewing 30 results - 18,601 through 18,630 (of 18,737 total)