Viewing 30 results - 12,451 through 12,480 (of 18,742 total)
  • Author
    Search Results
  • #545010

    Topic: Style H2

    in forum Enfold
    Wolf
    Participant

    Hello Team,

    I would like to style my H2. I tried quick css and in style.css (of child theme)

    h2 {
    color: #575756;
    font-size: 18px;
    }

    But it doesn’t change. I also tried using the font styling menu, but also nothing happend.
    I would need to change the spacing as well, to the same as h4

    I’m looking forward to your answer.

    Cheers

    • This topic was modified 10 years, 4 months ago by Wolf.
    #544961

    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='#303030' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_textblock size='' font_color='' color='']
    <center></center>
    <div id=”social-footer”>facebookinstagramtwitteryoutube</div>
    [/av_textblock]
    [/av_section]

    #544625

    Hi comprompt!

    You have this CSS on the page.

    .goog-te-gadget {
        font-size: 0px !important;
    }

    Which is hiding the text. If your not sure where it’s coming from then try adding this to your custom CSS to overwrite it.

    #top .goog-te-gadget {
        font-size: 10px !important;
    }

    Best regards,
    Elliott

    #544380

    In reply to: Logo text

    Hi!

    Please add following code to Quick CSS as well

    .subtext {
        font-family: 'Antic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 17px;
    }

    P.S.: Great font family choice!

    Best regards,
    Yigit

    #544317

    Topic: Mobile Display Issues

    in forum Enfold
    500Webmaster
    Participant

    Hi,

    We noticed that on both Android and iOS, the logo and additional info (phone number) overlap. On a desktop or laptop device, the logo appears on the left and additional info set to appear on the right – which is exactly what we want. It’s only when using mobile devices that these two overlap. Is there a way to prevent this from happening, such as make the “additional info” appear below the logo on mobile devices?

    These are the Quick CSS codes we’re currently using, perhaps something here is causing the issue:

    .team-member-name, .team-member-job-title, .team-member-description { text-align: center; }
    .team-img-container { margin-bottom: 25px; }
    .team-member-name { color: #02a122; }

    div.phone-info {
    font-size: 20px;
    }

    div.phone-info {
    position: relative;
    top: 60px;
    right: 10%;
    color: #333333 !important;
    }

    .title_container{
    display: none;
    }

    #header_meta { margin-top: -30px; }

    table, td, tr {
    border: 0px !important;
    }

    Thanks

    #544204

    Topic: Logo text

    in forum Enfold
    charlotteraboff
    Participant

    Hi,

    What code shall I add if I want the logo to be just a title text (same font and size as the menu text) ?

    Thanks
    Charlotte

    #544108
    mhaemmer
    Participant

    Hi.
    I am using the enfold theme and the following code should open a lightbox with contact form 7.

    It is working on desktops, but not on mobile (iPhone 6 with safari).

    <div id="test-popup" class="white-popup mfp-hide">
    [contact-form-7 id="595" title="xyz"]
    </div>
    <a class="open-popup-link fancybox avia-button avia-color-green avia-size-x-large" font='entypo-fontello' custom_font='#ffffff' href="#test-popup">xyz xyz xyz</a>

    Can you please help me?

    Best regards
    Moritz

    • This topic was modified 10 years, 4 months ago by mhaemmer.
    #544072

    Hi,

    Try the following in Quick CSS:

    .bbp-forum-title {
    font-size:18px !important;
    }

    Best regards,
    Rikard

    #543952

    Hi diego!

    Perhaps you need to use the !important override to make sure it’s not getting overwritten.

    .yourClass { color: red !important; font-size: 12px !important; }
    

    Cheers!
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    #543927

    Hey Elliott,

    That’s good to know, but what can I do now? Could you take a look at my functions.php code?

    <?php
    
    // =============================================================================
    // FUNCTIONS.PHP
    // -----------------------------------------------------------------------------
    // Overwrite or add your own custom functions in this file.
    // =============================================================================
    
    // Custom Class for every element
    
    add_theme_support('avia_template_builder_custom_css');
    
    add_action('wp_footer', 'add_custom_script');
    
    function change_shortcodesjs() {
       wp_dequeue_style( 'avia-base' );
       wp_enqueue_style( 'avia-base-child', get_stylesheet_directory_uri().'/css/base.css', array(), '2', 'all' );
    }
    if(!is_admin()){
    add_action( 'wp_enqueue_scripts', 'change_shortcodesjs', 100 );
    }
    
    function change_aviajs() {
       wp_dequeue_script( 'avia-default' );
       wp_enqueue_script( 'avia-default-child', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'), 2, true );
    }
    add_action( 'wp_enqueue_scripts', 'change_aviajs', 100 );
    
    add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
    
    function avia_replace_standard_icon($icons)
    {
    $icons['mobile_menu']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue811');
    return $icons;
    }
    
    add_filter( 'jpeg_quality', create_function( '', 'return 100;' ) );
    
    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    	$size['entry_with_sidebar'] 	= array('width'=>854, 'height'=>569);
    	return $size;	
    }
    
    ?>

    Thx!

    #543908
    grafikero
    Participant

    Hi!
    I’d like to change the position for my background header image in mobile.
    Also I’d like to change the font-size for the subheading in mobile.

    I added a CSS Custom Class in the element pop up but It didn’t work in my madia query

    @media only screen and (max-width: 767px) {
    	.fondo-header{
    		background-position: left center;
    	}
    
    }
    

    Thanks!!

    #543846

    And how do I add the font size to it?

    #543817
    bakbek
    Participant

    Hi, how can I make the font size bigger in the forums?

    #543802

    In reply to: Icon in header menu

    If you visit the page below, you see the home icon in main area and i used the same shortcode in the header menu. They are not similar.
    This is the code i used for both:
    [av_font_icon icon='ue821' font='entypo-fontello' style='border' caption='' link='page,265' linktarget='' size='30px' position='left' color=''][/av_font_icon]
    THX Freek

    #543739

    Topic: Icon in header menu

    in forum Enfold
    Freek
    Participant

    Hi, i want an icon (with animation) in my header menu with the following code:
    [av_font_icon icon='ue821' font='entypo-fontello' style='border' caption='' link='manually,http://www.domainname.ext' linktarget='' size='20px' position='left' color=''][/av_font_icon]

    I placed this in my Enfold header menu but the styling is not ok. Is this possible?
    THX Freek

    #543400

    Hey!

    Sorry, use this instead.

    #ship-to-different-address label {
        font-size: 15px !important;
    }

    Regards,
    Elliott

    #543337

    In reply to: Social profile color.

    Hey Nathan!

    Add this to your custom CSS.

    .social_bookmarks a::before {
        font-size: 22px !important;
    }

    Best regards,
    Elliott

    #543307

    In reply to: Promo Box Text

    Hi Picante!

    Add this to your custom CSS.

    .avia-promocontent p {
        font-size: 17px !important;
    }

    Regards,
    Elliott

    #543218

    Hi Elliott,

    i have tried that but it only increases the position away from the top, not the font size itself.

    #543133

    Hi Janinifee!

    gerne helfen wir dir dabei. Kopiere folgenden Code in dein Quick CSS Feld hinein:

    @media only screen and (max-width: 767px) {
    .avia-testimonial-content.av_inherit_color h3 {
    font-size: 19px !important;
    }}
    

    und passe gegebenenfalls noch an.

    Lieben Gruß,
    Andy

    #542988

    In reply to: Excerpt in magazine

    Hey Wellington!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .av-magazine-content { font-size: 14px; }

    Regards,
    Yigit

    #542965

    Hi!

    Please add following code to Quick CSS as well

    .avia_iconbox_title {
        font-size: 16px;
    }

    do not forget to edit your element and change the font size of your span within iconbox title as well

    Best regards,
    Yigit

    #542889

    Hi mleite1,

    Please try the following in Quick CSS under Enfold–>General Styling:

    #top .scroll-down-link {
        font-size: 130px !important;
    }

    Best regards,
    Rikard

    #542832

    Hi!

    I managed to make it work in the frontend but it’s a bit too tall and I’m not sure if the script is going to work.

    Add a color section then apply a unique id in the Section ID field (ex: floated-form). Add the first code block:

    <script type="text/javascript">
    (function($){ 
    	var _scroll = true, _timer = false, _floatbox = $("#contact_form"), _floatbox_opener = $(".contact-opener") ;
    	_floatbox.css("right", "-320px"); //initial contact form position
    	//Contact form Opener button
    	_floatbox_opener.click(function(){
    		if (_floatbox.hasClass('visiable')){
                _floatbox.animate({"right":"-320px"}, {duration: 300}).removeClass('visiable');
            }else{
               _floatbox.animate({"right":"0px"},  {duration: 300}).addClass('visiable');
            }
    	});
    	//Effect on Scroll
    	$(window).scroll(function(){
    		if(_scroll){
    			_floatbox.animate({"top": "30px"},{duration: 300});
    			_scroll = false;
    		}
    		if(_timer !== false){ clearTimeout(_timer); }           
    			_timer = setTimeout(function(){_scroll = true; 
    			_floatbox.animate({"top": "10px"},{easing: "linear"}, {duration: 500});}, 400); 
    	});
    	//Ajax form submit
        $("#submit_btn").click(function() { 
            var proceed = true;
            //simple validation at client's end
            //loop through each field and we simply change border color to red for invalid fields       
            $("#contact_form input[required=true], #contact_form textarea[required=true]").each(function(){
                $(this).css('border-color',''); 
                if(!$.trim($(this).val())){ //if this field is empty 
                    $(this).css('border-color','red'); //change border color to red   
                    proceed = false; //set do not proceed flag
                }
                //check invalid email
                var email_reg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/; 
                if($(this).attr("type")=="email" && !email_reg.test($.trim($(this).val()))){
                    $(this).css('border-color','red'); //change border color to red   
                    proceed = false; //set do not proceed flag              
                }   
            });
           
            if(proceed) //everything looks good! proceed...
            {
                //get input field values data to be sent to server
                post_data = {
                    'user_name'     : $('input[name=name]').val(), 
                    'user_email'    : $('input[name=email]').val(), 
                    'country_code'  : $('input[name=phone1]').val(), 
                    'phone_number'  : $('input[name=phone2]').val(), 
                    'subject'       : $('select[name=subject]').val(), 
                    'msg'           : $('textarea[name=message]').val()
                };
                
                //Ajax post data to server
                $.post('floating-contact-form', post_data, function(response){  
                    if(response.type == 'error'){ //load json data from server and output message     
                        output = '<div class="error">'+response.text+'</div>';
                    }else{
                        output = '<div class="success">'+response.text+'</div>';
                        //reset values in all input fields
                        $("#contact_form  input[required=true], #contact_form textarea[required=true]").val(''); 
                    }
                    $("#contact_form #contact_results").hide().html(output).slideDown();
                }, 'json');
            }
        });
        
        //reset previously set border colors and hide all message on .keyup()
        $("#contact_form  input[required=true], #contact_form textarea[required=true]").keyup(function() { 
            $(this).css('border-color',''); 
            $("#result").slideUp();
        });
    	
    })(jQuery);
    </script>

    .. place the css in the second code block:

    <style>
    .floating-form{max-width:320px;padding:30px 30px 10px;font:13px Arial,Helvetica,sans-serif;background:#F9F9F9;border:1px solid #ddd;right:10px;position:fixed;box-shadow:-2px 0 8px rgba(43,33,33,.06);-moz-box-shadow:-2px 0 8px rgba(43,33,33,.06);-webkit-box-shadow:-2px 0 8px rgba(43,33,33,.06)}.contact-opener{position:absolute;left:-88px;transform:rotate(-90deg);top:100px;text-shadow:1px 1px 1px rgba(0,0,0,.43);border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0}.floating-form-heading{font-weight:700;font-style:italic;border-bottom:2px solid #ddd;margin-bottom:10px;font-size:15px;padding-bottom:3px}.floating-form label{display:block;margin:0 0 15px}.floating-form label>span{width:70px;font-weight:700;float:left;padding-top:8px;padding-right:5px}.floating-form span.required{color:red}.floating-form .tel-number-field{width:40px;text-align:center}.floating-form .long{width:120px}.floating-form input.input-field{width:68%}.floating-form .select-field,.floating-form .tel-number-field,.floating-form .textarea-field,.floating-form input.input-field{-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;border:1px solid #C2C2C2;box-shadow:1px 1px 4px #EBEBEB;-moz-box-shadow:1px 1px 4px #EBEBEB;-webkit-box-shadow:1px 1px 4px #EBEBEB;border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;padding:7px;outline:0}.floating-form .input-field:focus,.floating-form .select-field:focus,.floating-form .tel-number-field:focus,.floating-form .textarea-field:focus{border:1px solid #0C0}.floating-form .textarea-field{height:100px;width:68%}.contact-opener,.floating-form input[type=button],.floating-form input[type=submit]{-moz-box-shadow:inset 0 1px 0 0 #3985B1;-webkit-box-shadow:inset 0 1px 0 0 #3985B1;box-shadow:inset 0 1px 0 0 #3985B1;background-color:#216288;border:1px solid #17445E;display:inline-block;cursor:pointer;color:#FFF;padding:8px 18px;text-decoration:none;font:12px Arial,Helvetica,sans-serif}.contact-opener,.floating-form input[type=button]:hover,.floating-form input[type=submit]:hover{background:linear-gradient(to bottom,#2D77A2 5%,#337DA8 100%);background-color:#28739E}.floating-form .success{background:#D8FFC0;color:#2E6800;border-left:3px solid #2E6800}.floating-form .error,.floating-form .success{padding:5px 10px;margin:0 0 5px;border:none;font-weight:700}.floating-form .error{background:#FFE8E8;color:red;border-left:3px solid red}
    </style>
    

    .. and the actual html code for the contact form in the third one. Use this in the Quick CSS field in order to make it float:

    #floated-form {
        position: fixed;
        right: 0;
        bottom: 60%;
        height: 350px;
        display: block;
        width: auto;
        z-index: 1000;
    }

    Cheers!
    Ismael

    #542753

    Thank you Ismael!

    Can you show me how I would add this short code:

    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='#303030' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_textblock size='' font_color='' color='']

    <center></center>
    <div id=”social-footer”>facebookinstagramtwitteryoutube</div>
    [/av_textblock]
    [/av_section]

    To the do_shortcode:

    function do_shortcode( $content, $ignore_html = false ) {
    global $shortcode_tags;

    if ( false === strpos( $content, ‘[‘ ) ) {
    return $content;
    }

    if (empty($shortcode_tags) || !is_array($shortcode_tags))
    return $content;

    $tagnames = array_keys($shortcode_tags);
    $tagregexp = join( ‘|’, array_map(‘preg_quote’, $tagnames) );
    $pattern = “/\\[($tagregexp)/s”;

    if ( 1 !== preg_match( $pattern, $content ) ) {
    // Avoids parsing HTML when there are no shortcodes or embeds anyway.
    return $content;
    }

    $content = do_shortcodes_in_html_tags( $content, $ignore_html );

    $pattern = get_shortcode_regex();
    $content = preg_replace_callback( “/$pattern/s”, ‘do_shortcode_tag’, $content );

    // Always restore square braces so we don’t break things like <!–[if IE ]>
    $content = unescape_invalid_shortcodes( $content );

    return $content;
    }

    Hey!

    Well, the only thing I can think of is to give it a smaller font size. Add this to a codeblock element in the page.

    <style type = "text/css">
    @media screen and (max-width: 1260px) {
    .avia_iconbox_title { font-size: 11px !important; }
    }
    </style>
    

    Cheers!
    Elliott

    #542686

    Hey weddingmuseum!

    Add this to your custom CSS.

    a#advanced_menu_toggle::after {
        content: "Menu";
        font-size: 12px;
        position: absolute;
        top: -30px;
        left: 5px;
    }

    Cheers!
    Elliott

    #542468

    In reply to: Iconlist help

    Hey!

    you should be able to change it inside of ALB when editing the icon list element. However, you can control font size with this code in Quick CSS field:

    .iconlist_title {
    font-size: 10px;
    }
    .iconlist_content p {
    font-size: 12px;
    }
    

    Adjust as needed.

    Regards,
    Andy

    #542388

    Hi oldboys!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 480px) {
    h3.iconbox_content_title {
        font-size: 15px!important;
    }}

    Best regards,
    Yigit

    #542278

    In reply to: TAB CONTROL WIDTH

    Hey!

    You are currently wrapping your text around “strong” tags. We would recommend you to wrap them in heading tags.
    You can increase title sizes by adding following code to Quick CSS

    .tab_inner_content strong {
        font-size: 22px;
    }
    .sidebar_tab .tab_titles {
        width: 20%;
    }

    Cheers!
    Yigit

Viewing 30 results - 12,451 through 12,480 (of 18,742 total)