Viewing 30 results - 15,061 through 15,090 (of 18,733 total)
  • Author
    Search Results
  • #364182

    Hey anma!

    By default the dropdowns will be aligned flush to the left side of the link. If you want to move them around then you can try some CSS like so.

    .menu > li > .sub-menu { left: auto !important; right: 0px !important; }
    

    You can edit the font, size, and background in Dashboard > Enfold > Advanced Styling.

    Best regards,
    Elliott

    #364014

    Hi,

    How would I set it up in shortcode? I tried doign this:

    [av_one_full first]

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

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

    [/av_one_full]

    But it doesn’t work

    #363942

    Hi!

    The full width sub menu element is only meant to be use as a support navigation and is still under development. Looks like you’re adding a lot of menu items on it. It lacks the mobile toggle ability of the main menu so it won’t work on smaller screens if there are a lot of items added to it. Decreasing the padding and font size of the menu items on smaller screens won’t help. Maybe, you should consider adding the navigation on the sidebar using the Custom Menu widget.

    Regards,
    Ismael

    #363845

    Topic: Socket Font Size

    in forum Enfold
    markpevans
    Participant

    Is there a way to increase the socket font size and also a way to re-position it?

    Hey blauwoog!

    First off do this, http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/, and then add a class to your accordion.

    You can then use some custom CSS to style that specific accordion like so.

    .my_class .toggler, .my_class .toggle_content { font-size: 20px !important; }
    

    Cheers!
    Elliott

    • This reply was modified 11 years, 3 months ago by Elliott.
    #363805

    Hey!

    Please see – http://kriesi.at/documentation/enfold/change-the-default-font-size/

    @aribann
    and @flikk, thanks for the help :)

    Cheers!
    Yigit

    Hey aribann!

    Not sure what’s going on there. I see it being added correctly to your dynamic stylesheet.

    #top #wrap_all .header_color h1, #top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1, #top #wrap_all .socket_color h1{color:#86221f;font-size:24px;font-family:'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;}
    

    But it’s not being applied for some reason. Perhaps you have a typo in your other CSS somewhere. This feature is still in beta though. Try adding this to your quick CSS.

    .main_color h1 { font-size: 24px !important; }
    

    Cheers!
    Elliott

    • This reply was modified 11 years, 3 months ago by Elliott.
    #363774
    anma
    Participant

    Hello,

    I can’t find where to change the position of the top drop down menu – the drop down is aligned to the right and not under the Link.
    Further I’d like to change color of the font, background and font size, can you send me the css code please.

    Thank you in advance,

    best, AB

    #363750

    In reply to: contact form

    Hey!

    Are you referring to the buttons in your four columns? If so then try this out.

    .avia-button { font-size: 15px !important; }
    

    If that’s not it then take a screenshot and highlight the exact areas your trying to style.

    Cheers!
    Elliott

    #363732

    Hi edfaber!

    Yes, you would just set the link of your promo box manually and link to your video. Our scripts should pick it up automatically and set it to open in the magnific popup.

    Here is an example with vimeo.

    [av_promobox button='yes' label='Click me' link='manually,http://vimeo.com/1084537' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='large' icon_select='no' icon='ue800' font='entypo-fontello' custom_class='']
    Welcome Stranger! This is an example Text for your fantastic Promo Box! Feel Free to delete it and replace it with your own fancy Message!
    [/av_promobox]
    

    Cheers!
    Elliott

    #363687

    Hi!

    I don’t see an easy way of doing that unfortunately. It would be best to just use a sidebar. Currently our sidebar only displays at the bottom of your full width sections. You can issue a feature request here though, https://kriesi.at/support/enfold-feature-requests/, and we may be able to get something worked out in a future update.

    If you want to style the widget area element then it’s going to take a lot of work. You can find our sidebar and widget CSS in /enfold/css/layout.css starting on line 1992.

    
    /* ======================================================================================================================================================
    #Sidebar & Widgets
    ====================================================================================================================================================== */
    
    .widgettitle{
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    }
    

    Cheers!
    Elliott

    #363534

    Hey Elliott,

    The Root of the Problem

    Thanks for you help! It seems that, when one is logged out of WP, the following line disappears from the source (it actually adds support for a 300 font weight):

    <link rel='stylesheet' id='open-sans-css' href='//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=4.0.1' type='text/css' media='all' />

    I think this is something that needs to be fixed in Enfold’s core code (Enfold shouldn’t remove the above line for non-logged users) :) Because when this line disappears, the lowest supported Open Sans font weight is, as you mentioned, 400 (instead of 300). Seems more Enfold users have this issue and one user has added the line manually to header.php.

    Solution #1 of 2

    Fixes headers, but not text size issue of text between <em> tags:

    However, I re-read the topic I mentioned earlier and a solution is actually given by @Josue.

    Since you pointed out that Open Sans does not support a font weight of 100, I modified Josue’s function to reflect this (as Josue’s original function also calls the non-existent 100 font weight). Here’s the working result, calling all font weights supported by Open Sans:

    Please Note: after adding the function below to functions.php, Open Sans has to be re-saved as Enfold’s default font. Otherwise the function will not work! So please complete the following steps:

    1 – Add the following function to functions.php:

    function add_open_sans_full($fonts) {
    	$fonts['Open Sans'] = 'Open Sans:300,400,600,700,800';
    	return $fonts;
    }
    add_filter('avf_google_heading_font', 'add_open_sans_full');
    add_filter('avf_google_content_font', 'add_open_sans_full');

    2 – Go to WP Admin > Enfold Settings > General Styling > Fonts;
    3 – Select Open Sans in the 2 drop down menus (Heading Font & Defines the Font for your body text);
    4 – Save Enfold’s settings;
    5 – Reload your website in your browser.

    The font weights (e.g. 300) should now work for both logged in and non-logged in users.

    The Details re Solution #1/2 / Function #1/2

    The function does not add:

    <link rel='stylesheet' id='open-sans-css' href='//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=4.0.1' type='text/css' media='all' />

    Instead it expands:

    <!-- google webfont font replacement -->
    <link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=Open+Sans:400,600' type='text/css' media='all'/>

    To:

    <!-- google webfont font replacement -->
    <link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800' type='text/css' media='all'/>

    Solution #2 of 2

    Fixes headers & text size of text between <em> tags… so, logged in and logged out versions look exactly the same:

    I wrote a function which checks whether the following line is in the header (the line that disappears after logging out of WP):

    <link rel='stylesheet' id='open-sans-css' href='//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=4.0.1' type='text/css' media='all' />

    If the line is there, function does nothing. If the line is not there (e.g. when you’re logged out of WP), then the line is added.

    Simply add the following function to functions.php, upload functions.php to your server and reload website in your browser (no need to re-save Enfold settings):

    function add_open_sans_full() {
    	if (!wp_style_is('open-sans')) {
    		wp_enqueue_style('open-sans', '//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=' . get_bloginfo('version'), array(), null);
    	}
    }
    add_action('wp_enqueue_scripts', 'add_open_sans_full');

    Thanks @Elliott & @Josue!

    Kind regards,

    Ralph

    PS: I’ll change my CSS to reflect the lowest possible Open Sans font weight (300 instead of 100).

    #363407

    why dont you just link directly to the answer?

    here you go:
    http://kriesi.at/documentation/enfold/change-the-default-font-size/

    #363356
    erick1975bcn
    Participant

    Hi!!
    I’d like to modify the Font Size af all the main content of my web.
    In the Advanced Styling options I can only change H1-H6, main manue etc… but not the font size of the main text.
    can you help me please?
    thank you very much!!!
    Erick

    • This topic was modified 11 years, 3 months ago by erick1975bcn.
    #363337
    discotech
    Participant

    Hi,

    I have two buttons that I would like to show up side by side on mobile devices. Here is a example page:

    http://www.discotech.me/test/

    When opening on mobile I’m trying to make the two buttons side by side rather than stacked on top of each other.

    This is the shortcode that I am using:

    [av_one_half][av_button label='Test button' link='manually,http://' link_target='' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' color='grey' custom_bg='#444444' custom_font='#ffffff'][/av_one_half]
    [av_one_half first][av_button label='Test button' link='manually,http://' link_target='' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' color='grey' custom_bg='#444444' custom_font='#ffffff'][/av_one_half]

    Thanks!

    #363319

    Hey!

    You can add a scroll bar on the sidebar menu but it won’t look that good:

    .html_header_left #top #header {
    overflow: auto;
    }

    Or decrease the menu padding and font size. The left sidebar header works well when content is taller than the side header.

    Regards,
    Ismael

    blauwoog
    Participant

    Hello,
    I’m sorry about the title of this message. I think your help is great, especially for dumbos like me.
    I’ve seen many times the CSS-snippet::

    body { font-size: 16px; }

    I do understand it, changing font size all over.
    But I like to change the font size in a content element, like “Accordion”.
    Can it be done by a CSS-snippet? I tried some HTML inside Accordion, but that doesn’t work.well.

    Thanks
    Regards

    Jan-Hein

    aribann
    Participant

    Change of font to anything else in Theme Options and control comes back

    That was wrong dont seem to be able to control anything

    • This topic was modified 11 years, 3 months ago by aribann.
    #363244

    In reply to: SPACINGS AND LAYOUT

    Hey!

    Please add following code to Quick CSS

    #footer * {
    font-family: 'Oswald', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    }
    input#contactsubmit {
    background-color: #87d700;
    font-size: 16px;
    text-transform: uppercase;
    }

    Regards,
    Yigit

    #363214

    In reply to: line disapear

    Done but far worse.

    QUICK CSS:

    form#form-wysija-4 label {
    display: none!important;
    }
    .widget_wysija_cont .updated, .widget_wysija_cont .login .message {
    background-color: orange;
    border-color: orange;
    }

    #top #payment #place_order {
    float: right !important;
    margin: -4px 10px 10px 0 !important;
    }

    .wgm-second-checkout .entry-content > div {
    margin: 0 !important;
    }

    .header_color .cart_dropdown .dropdown_widget li a, #top .header_color .avia_cart_buttons .button, #top .header_color .dropdown_widget .buttons .button, .header_color .cart_dropdown_first .cart_dropdown_link {
    color: #000000;
    }

    .header_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content {
    background: #ffffff;
    color: #000000;
    }

    @media only screen and (max-width: 1140px) { .header-scrolled strong.logo {
    left: -22%;
    }}

    #footer .widget_product_search.widget h3 {
    padding-top: 0;
    }
    .header_color .cart_dropdown_first .cart_dropdown_link {
    color: white;
    }

    .header_color .dropdown_widget_cart .avia-arrow {
    background-color: white;
    }

    .ls-defaultskin { padding: 0; }

    #top #payment #place_order { float: none!important; }

    .widget_wysija_cont .updated {
    height: 45px;
    }

    #top #payment #place_order {
    position: relative;
    top: 5px;
    left: 65px;
    }

    div#header_main {
    background-image: url(http://www.weinkellerei-woeber.at/weinkellerei/wp-content/uploads/2011/09/logo_linie.jpg);
    background-position: 0% 50%;
    background-repeat: no-repeat;
    }
    #header_main .container {
    background-color: black;
    }
    .header-scrolled #header_main { background-position: 0% 68%; }

    input.wysija-submit.wysija-submit-field, p.wysija-paragraph { margin: 0; float: left; font-size: 14px !important;}

    div#header_main {
    background-image: url(http://www.weinkellerei-woeber.at/weinkellerei/wp-content/uploads/2014/10/logo_linie.jpg);
    }

    #top .widget_product_search #searchform #searchsubmit { width: 65px; }

    section#wysija-4 form {
    margin-bottom: 0;
    }

    input[type=”submit”] { padding: 8px 22px; }

    form.checkout.wgm-second-checkout .col-1 h3 { margin-left: 10px; }
    #top div.woocommerce-message { padding: 32px 45% 32px 15px; margin-bottom: 10px !important; }

    a.cart_dropdown_link {
    color: #f05a1a!important;
    }

    .woocommerce-info {
    padding-left: 45px!important;
    }

    #top div.woocommerce-message {
    padding: 32px 0% 32px 40px;
    }

    .js_active .tab {
    display: none !important;
    }

    div a.remove, .cart_totals h2, .cart_totals small { margin-left: 22px; }

    @media only screen and (min-width: 2400px) { strong.logo { left: -132px; }}

    #363093

    In reply to: contact form

    Hi!

    Try adding this,

    input, button { font-size: 20px !important; }
    

    Send us a link to the element with the excerpt so we can take a look.

    Regards,
    Elliott

    #362837

    Hi!

    Thank you for coming back.

    To limit the changes to blog only you have to write the following code and change the value:

    
    .blog .entry-content p {
    font-size: 16px;
    }
    
    

    In Enfold -> General Styling at the bottom you find the input field Quick CSS. Put the text above in that field.

    Cheers!
    Günter

    #362772

    Hi Yigit,

    do I put it under General Styling “Main-Content” and does that lead to the fact, that only my blogpost are in a bigger font size (is what I want) ?

    Thankx

    Martina

    #362748
    bankaccounts
    Participant

    Hey,

    since the last update of the theme, some functionality of my child theme stopped working,
    and i need your help, cause i cant figure out what have changed in the enfold theme that caused that,
    my functionality was added to a child theme in order to support ajax call to get a page that was edited via the avia layout builder.

    function partialRefresh($page_name,$post_type,$user_country_code) {
    $query = array( ‘post_type’ => $post_type, ‘name’ => $page_name,’post_status’ => ‘publish’ );
    $query = new WP_Query($query);
    if ( !$query->have_posts() ) {die(“page not found !”);}
    $query->the_post();
    $post = $query->post;
    $output=””;
    $the_id = $post->ID;
    $wp->the_id = $the_id;

    if(‘active’ == get_post_meta($the_id, ‘_aviaLayoutBuilder_active’, true)){
    global $avia_config;
    ShortcodeHelper::$tree = get_post_meta($the_id, ‘_avia_builder_shortcode_tree’, true);
    $content = apply_filters(‘avia_builder_precompile’, get_post_meta($the_id, ‘_aviaLayoutBuilderCleanData’, true));
    $content = apply_filters(‘the_content’, do_shortcode($content));
    }

    return $content;
    }

    before the update i was getting html,
    now i get WordPress shortcode of the blog.

    [av_heading tag=’h3′ padding=’10’ heading=’Select a country you want to open a bank account in’ color=’meta-heading’ style=’blockquote modern-quote modern-centered’ custom_font=” size=” subheading_active=” subheading_size=’15’ custom_class=”] dfsfdsfds
    [/av_heading] [av_blog blog_type=’taxonomy’ post_type=’country’ categories=’141′ link=’country-category,1′ blog_style=’blog-grid’ columns=’5′ contents=’title’ content_length=’excerpt’ preview_mode=’auto’ image_size=’no scaling’ items=’-1′ offset=’0′ paginate=’no’]
    please what am i doing wrong? it seems that at this point, (child theme function file) the shortcodes of the Avia builder are not registered yet.

    how can i get this to work???

    • This topic was modified 11 years, 3 months ago by bankaccounts.
    #362725
    This reply has been marked as private.
    #362724
    Donkies11
    Participant

    Hello Support,

    Any thoughts on how to get the spacing and keyline on kathleenduich.com to emulate the same on kraut-kopf.de?

    • same vertical spacing
    • line above menu
    • font sizes
    • page title

    I’ve attempted a few things that haven’t worked – I’m really struggling with the spacing between the “main-title entry-title” and the “main_color container_wrap fullsize” element.

    Also, I’m not getting how to get a keyline above the menu.
    There is a PDF comparison on my FTP drop. The only difference between the two is on kathleenduich.com, she wants the logo aligned left instead of centered.

    TIA,
    Greg

    #362658

    Done some edits, it’s sorted now. Thanks guys!

    /* Adjustments for SVG logo */
    .logo img {
    height: 100%;
    }
    
    @media only screen and (max-width: 767px) {
    .responsive .logo img {height: 100% !important;}}
    
    /* Subtext */
    #top .av_header_transparency.av_alternate_logo_active .logo a > img {opacity: 1; filter: alpha(opacity=100); }
    strong.logo, .logo a { overflow: visible; }
    span.subtext { position: absolute; left: 120%; top: 0; color: white; width: 100px; font-size: 16px; font-weight: 600; }
    
    @media only screen and (max-width: 767px) {
    span.subtext { left: 100px; }}
    #362631
    cherojo
    Participant

    Hi!

    When i embed the code for a “signup form” from Chimpmail, everything shows perfect, except the “submit” button, that disappears.

    It shows it in the admin enfold editor and also in other HTML editors, just when i publish it, it desappears.

    This the Embedded code:

    <!-- Begin MailChimp Signup Form -->
    <link href="//cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    	#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
    	/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
    	   We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
    </style>
    <div id="mc_embed_signup">
    <form action="//ascycap.us9.list-manage.com/subscribe/post?u=4afdd491658b15dc178dbc554&id=857df44e5f" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
        <div id="mc_embed_signup_scroll">
    	
    <div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
    <div class="mc-field-group">
    	<label for="mce-COMPANY">Nombre del Proyecto o Negocio  <span class="asterisk">*</span>
    </label>
    	<input type="text" value="" name="COMPANY" class="required" id="mce-COMPANY">
    </div>
    <div class="mc-field-group">
    	<label for="mce-FNAME">Nombre del Representante  <span class="asterisk">*</span>
    </label>
    	<input type="text" value="" name="FNAME" class="required" id="mce-FNAME">
    </div>
    <div class="mc-field-group">
    	<label for="mce-LNAME">Apellido del Representante  <span class="asterisk">*</span>
    </label>
    	<input type="text" value="" name="LNAME" class="required" id="mce-LNAME">
    </div>
    <div class="mc-field-group">
    	<label for="mce-EMAIL">Email Address  <span class="asterisk">*</span>
    </label>
    	<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
    </div>
    <div class="mc-field-group size1of2">
    	<label for="mce-MMERGE4">Teléfono </label>
    	<input type="text" name="MMERGE4" class="" value="" id="mce-MMERGE4">
    </div>
    <div class="mc-field-group input-group">
        <strong>Area de Interés </strong>
        <ul><li><input type="checkbox" value="1" name="group[13709][1]" id="mce-group[13709]-13709-0"><label for="mce-group[13709]-13709-0">Emprendedor – Incubación de Idea</label></li>
    <li><input type="checkbox" value="2" name="group[13709][2]" id="mce-group[13709]-13709-1"><label for="mce-group[13709]-13709-1">Planeación Estratégica</label></li>
    <li><input type="checkbox" value="4" name="group[13709][4]" id="mce-group[13709]-13709-2"><label for="mce-group[13709]-13709-2">Marketing – Ventas</label></li>
    <li><input type="checkbox" value="8" name="group[13709][8]" id="mce-group[13709]-13709-3"><label for="mce-group[13709]-13709-3">Procesos</label></li>
    <li><input type="checkbox" value="16" name="group[13709][16]" id="mce-group[13709]-13709-4"><label for="mce-group[13709]-13709-4">Contabilidad – Finanzas</label></li>
    <li><input type="checkbox" value="32" name="group[13709][32]" id="mce-group[13709]-13709-5"><label for="mce-group[13709]-13709-5">Desarrollo Organizacional</label></li>
    <li><input type="checkbox" value="64" name="group[13709][64]" id="mce-group[13709]-13709-6"><label for="mce-group[13709]-13709-6">Financiamiento</label></li>
    <li><input type="checkbox" value="128" name="group[13709][128]" id="mce-group[13709]-13709-7"><label for="mce-group[13709]-13709-7">Vinculación Gubernamental</label></li>
    </ul>
    </div>
    	<div id="mce-responses" class="clear">
    		<div class="response" id="mce-error-response" style="display:none"></div>
    		<div class="response" id="mce-success-response" style="display:none"></div>
    	</div>    <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
        <div style="position: absolute; left: -5000px;"><input type="text" name="b_4afdd491658b15dc178dbc554_857df44e5f" tabindex="-1" value=""></div>
        <div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
        </div>
    </form>
    </div>
    <script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[1]='COMPANY';ftypes[1]='text';fnames[3]='FNAME';ftypes[3]='text';fnames[2]='LNAME';ftypes[2]='text';fnames[0]='EMAIL';ftypes[0]='email';fnames[4]='MMERGE4';ftypes[4]='phone'; /*
     * Translated default messages for the $ validation plugin.
     * Locale: ES
     */
    $.extend($.validator.messages, {
      required: "Este campo es obligatorio.",
      remote: "Por favor, rellena este campo.",
      email: "Por favor, escribe una dirección de correo válida",
      url: "Por favor, escribe una URL válida.",
      date: "Por favor, escribe una fecha válida.",
      dateISO: "Por favor, escribe una fecha (ISO) válida.",
      number: "Por favor, escribe un número entero válido.",
      digits: "Por favor, escribe sólo dígitos.",
      creditcard: "Por favor, escribe un número de tarjeta válido.",
      equalTo: "Por favor, escribe el mismo valor de nuevo.",
      accept: "Por favor, escribe un valor con una extensión aceptada.",
      maxlength: $.validator.format("Por favor, no escribas más de {0} caracteres."),
      minlength: $.validator.format("Por favor, no escribas menos de {0} caracteres."),
      rangelength: $.validator.format("Por favor, escribe un valor entre {0} y {1} caracteres."),
      range: $.validator.format("Por favor, escribe un valor entre {0} y {1}."),
      max: $.validator.format("Por favor, escribe un valor menor o igual a {0}."),
      min: $.validator.format("Por favor, escribe un valor mayor o igual a {0}.")
    });}(jQuery));var $mcj = jQuery.noConflict(true);</script>
    <!--End mc_embed_signup-->
    
    

    ¿Any clue how to solve this?

    Thanks!

    #362586

    Hi jansthh!

    1. You can play around with the value on line 1036 in /enfold/css/shortcodes.css.

    @media only screen and (max-width: 767px)  {
    

    To change when the tabs switch to responsive.

    2. Try adding this to your custom CSS.

    .scroll-down-link { font-size: 200px !important; }
    .avia-slideshow-arrows a:before {
        background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
    }

    3. Add this to your custom CSS.

    .portfolio-preview-title.entry-title {
        text-align: center !important;
    }

    Cheers!
    Elliott

    #362573
    KingConga
    Participant

    I’m trying to change the display of the job title in the Team Member element. I thought I’d identified the div but it didn’t work, even after putting !important. Could you help me identify that please

    .team-member-job-title {font-size: 1.4em !important;}

Viewing 30 results - 15,061 through 15,090 (of 18,733 total)