Viewing 30 results - 12,841 through 12,870 (of 18,738 total)
  • Author
    Search Results
  • #515508

    In reply to: Help with my design

    Hi,

    I have posted a picture here so you have something to refer to https://www.dropbox.com/s/wv2y9f2keaaurib/2015-10-07%2022.27.48.jpg?dl=0

    1 So on the picture you can see an area in red either side of my menu bar. I want that area to be the same green as on the rest of the menu and not the white that the rest of the header is currently.

    2 Also on that page, you can get to that page via http://test.seymourcarehomes.com/blog/?p=47 is it possible for me to change how the submit button behaves? Ie like the colour it changes to when I hover over it? The font of the submit text etc

    3 Last question for now, how do I change the appearance of my side bar menu? Ie background colour, font, font size etc.

    Many thanks

    #515216

    Hi!

    1.) for “sign up” button use this code:

    .avia_ajax_form .form_element_fourth {
    width: 25.2%;
    margin-left: 0px;
    }
    

    2.) For footer columns you could try to make font-size smaller on mobile devices:

    @media only screen and (max-width: 767px) {
    h3.widgettitle {
    font-size: 10px;
    }}
    

    3.) Can you provide us a precise link where we can see the sidebar shown on your third screenshot please? we need to inspect the elements.

    Regards,
    Andy

    #515169

    Hi richardelectrix!

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

    @media only screen and (max-width: 480px) { 
    .homepage-intro h1 { font-size: 16px !important; }}

    Regards,
    Yigit

    #515101

    Hi Yigit,

    thanks with help of some other topics I got it basically work. I defined the h1 with

        h6 { 
        font-family: 'freightbigmediumregular'; 
        font-size: 22px; 
        line-height: 24px; 
        letter-spacing: 20px;
        color: #373737 !important;
        text-transform: none !important;
        font-weight: normal !important;
        }  

    and also own stylel i.e.

        FS6 { 
        font-family: 'freightsansbook'; 
        font-size: 16px; 
        line-height: 24px; 
        letter-spacing: 20px;
        color: #C8C8C8 !important;   
        text-transform: none !important;
        font-weight: normal !important;
        } 
        
        FS7 { 
        font-family: 'freightsansbook'; 
        font-size: 14px; 
        line-height: 16px; 
        letter-spacing: 0px;
        color: #AAAAAA !important;  
        text-transform: none !important;
        font-weight: normal !important;
        } 
        

    But now I have a problem with using my own styles i.e. FS7.

    I tried two variantions:

    1) Add the own style row in functions.php

    //Enable ALB Style
    add_theme_support('avia_template_builder_custom_css');

    When I write here FS7 inside it doesn’t work.

    2) In the editor by default it can’t be selected, so I tried to use them manually:

    sdfsdfsdfsdf
    
    <FS7>sdfsdfsdfsdf</FS7>

    When saving or preview it, it’s working:
    http://pasteboard.co/1c7wMAfI.jpg
    But with next edit or save or switch from “Text” to “Visual” it’s again a <p> style and styles has to be edited every time by new.
    I also deactivated the tinymce to run origin wordpress editor with same effect.

    Any idea how to fix this issue?

    Thanks a lot !
    Greeetings
    Michael

    #515056
    richardelectrix
    Participant

    Hi

    I have given a H1 Headline on my home page a custom css class of “homepage-intro”

    I want to be able to control the font size of this H1 (only this class) on a mobile device.

    How can this be done?

    dev2.electrixinternational.com

    Hey!

    Thank you for the update. We set the Enfold > Header > Mobile Menu > Header Mobile Menu activation to the second option. The menu will switch to mobile menu on tablets or browser width below 990px. If it’s not enough, use this:

    @media only screen and (max-width: 1100px) and (min-width: 768px) {
    .responsive .main_menu ul:first-child > li > a {
        padding: 0 7px !important;
        font-size: 11px !important;
    }
    }

    Adjust the values if necessary.

    Regards,
    Ismael

    Hi!

    Please add this in the Quick CSS field:

    .av-share-box ul li a {
        position: relative;
    }
    
    .av-share-box ul li a:hover > .avia_hidden_link_text {
        display: block !important;
        transition: all 0.2s ease-in-out;
    }
    
    #top .avia_hidden_link_text {
        position: absolute;
        top: -55px;
        width: 100px;
        background-color: #ffffff;
        padding: 5px 10px;
        font-size: 11px;
        left: -30px;
        color: #5c441a;
    }
    
    .av-social-sharing-box {
        z-index: 9000;
        position: relative;
    }
    
    #top .avia_hidden_link_text:before {
        content: '';
        height: 10px;
        width: 10px;
        position: absolute;
        bottom: -6px;
        left: 50%;
        margin-left: -5px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-width: 1px;
        border-style: solid;
        visibility: hidden\9;
        border-color: #ffffff;
        background-color: #ffffff;
    }

    Cheers!
    Ismael

    #514890
    tdproperty
    Participant

    How can I make my desktop view go to 1024 min pixels without the menu names overlapping my logo? I have already pushed everything to the right and removed the search icon for additional room? I noticed that the enfold theme demo is about the same size and works properly. Currently I have added the following css code and my web site is mentioned in private

    
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    }
    
    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;}
    body { font-size: 16px; }
    
    .phone-info span { font-size: 16px; }
    
    .main_menu .menu ul { width: 235px; }
    
    #top div .avia-gallery img { border-style: none; padding: 0; }
    
    @media only screen 
     and (min-width: 768px) 
     and (max-width: 1023px) {
    .container #advanced_menu_toggle, #advanced_menu_hide {
    display: block;
    }
    .main_menu .avia-menu, #header_main_alternate, .fallback_menu {
    display: none;
    }}
    
    @media only screen
      and (min-width: 768px)
      and (max-width: 1023px) {
    ul.noLightbox.social_bookmarks.icon_count_4 {
    left: -60px;
    display: block;
    }}
    
    #input_1_33_other {
    width: auto !important;
    }
    
    select.ui-datepicker-month, select.ui-datepicker-year {
    width: 35% !important;
    display: inline !important;
    }
    
    input.datepicker {
    display: inline !important;
    }
    
    .mfp-title {
    display: none !important;
    }
    
    #514769

    I found the solution:

    shortcode :
    [av_blog blog_type='posts' categories='44' link='category' blog_style='blog-grid' columns='1' contents='title' content_length='excerpt' preview_mode='custom' image_size='thumbnail' items='10' offset='0' paginate='yes' custom_class='bloc-index-no-img liste-objets']

    CSS :

    .liste-objets h3.slide-entry-title.entry-title {
    font-family: Helvetica;
    text-transform: capitalize;
    padding:0;
    font-size: 14px;
    font-weight: normal;
    margin-left:-15px;
    text-align: left;
    }
    .liste-objets h3.slide-entry-title.entry-title:before {
    content: "\2022";
    display: inline-block;
    width: 10px;
    font-size: 16px;
    margin: 0 0px 0 -5px;
    }
    

    Thanks
    Carosch

    #514709
    michaellausser
    Participant

    Hi,

    I have again trouble with the fonts integration.

    So I followed a lot of topics. The most helpful posted this link:
    http://justcreative.com/2013/01/22/how-to-use-custom-fonts-with-font-face-on-wordpress/

    So I followed this instructions.
    Generated the font files as described, uploaded to the childtheme new folder “customfonts”.
    Added the css:

    @font-face {
        font-family: 'freightbigmediumregular';
        src: url('http://http://madlener.wom.server49.vorschauseite.eu/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.eot');
        src: url('http://http://madlener.wom.server49.vorschauseite.eu/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.eot?#iefix') format('embedded-opentype'),
             url('http://http://madlener.wom.server49.vorschauseite.eu/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.woff2') format('woff2'),
             url('http://http://madlener.wom.server49.vorschauseite.eu/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.woff') format('woff'),
             url('http://http://madlener.wom.server49.vorschauseite.eu/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.ttf') format('truetype'),
             url('http://http://madlener.wom.server49.vorschauseite.eu/wp-content/themes/enfold-child/customfonts/freightbigmedium-webfont.svg#freightbigmediumregular') format('svg');
        font-weight: normal;
        font-style: normal;
    
    }

    for all fonts.

    Added to functions.php:

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['FreightBigMedium'] = 'freightbigmediumregular';
    $fonts['FreightSansLight'] = 'freightsans_lightregular';
    $fonts['FreightSansBold'] = 'freightsans_boldregular';
    $fonts['FreightSansBook'] = 'freightsansbook';
    return $fonts;
    }
    
    add_filter('avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    
    $fonts['FreightBigMedium'] = 'freightbigmediumregular';
    $fonts['FreightSansLight'] = 'freightsans_lightregular';
    $fonts['FreightSansBold'] = 'freightsans_boldregular';
    $fonts['FreightSansBook'] = 'freightsansbook';
    return $fonts;
    }
    

    Used with the advanced styling setting and also tried with

        h1 { 
        font-family: 'freightbigmediumregular'; 
        font-size: 95px; 
        line-height: 100px; 
        letter-spacing: 0px;
        text-transform: initial;
    
        }

    But I don’t get loaded the correct font on the H1
    http://madlener.wom.server49.vorschauseite.eu/

    It should be:
    http://pasteboard.co/1b7adyu2.jpg

    but it is:
    http://pasteboard.co/1b7cBGJF.jpg

    First Headline is special Headline from ALB, second is with normal Texteditor H1.

    Do you have a hint to get it work?

    Thanks a lot !!

    Greetings
    Michael

    Hey!

    please open a new ticket for a new question.
    1. Use this code:

    .breadcrumb.breadcrumbs.avia-breadcrumbs {
    color: red;
    font-size: 10px;
    }
    

    2. It seems that the font is made like this. Check with a different font though.

    3. Use this to control font on footer:

    div#footer {
    font-family: fantasy; 
    }
    

    4. Can you show us where we can find the easy slider in question? we need to inspect the elements.

    Regards,
    Andy

    #514593

    In reply to: Widget Title

    Hey!

    If the problem is just the font size then add this to your custom CSS to make them smaller.

    aside h3 {
        font-size: 15px !important;
    }

    The ones in your sidebar are not actually widget titles but custom elements your using in a text widget.

    Best regards,
    Elliott

    #514472

    Hey!

    You can try decreasing font size on your elements. Otherwise, it would not be easily possible. Increasing space between elements = decreasing their width or 4 columns will not fit.

    Regards,
    Yigit

    #514277

    In reply to: View on mobile devices

    Hey!

    ich sehe keinerlei Fehler auf den ersten drei Screenshots. Wäre gut, wenn du uns zeigst, was du statt des bisherigen Zustandes erreichen möchtest.

    Für Screenshot Nummer 4 und 5 nutze diesen Code im Quick CSS Feld:

    @media only screen 
      and (min-width: 768px) 
      and (max-width: 1024px) {
    h2.av-special-heading-tag {
    font-size: 34px !important;
    }}
    

    und passe selbstständig die Schriftgröße (font-size) an.

    Für Screenshot Nummer 6 weiß ich zwar nicht was du stattdessen erreichen möchtest, aber ich schätze einfach mal du machst ebenfalls die Schriftgröße kleiner:

    @media only screen 
      and (min-width: 768px) 
      and (max-width: 1024px) {
    .avia_textblock.av_inherit_color {
    font-size: 25px !important;
    }}
    

    Bei Screenshot Nummer 7 weiß ich nicht was du anders haben möchtest. Sieht für mich in Ordnung aus.

    Gruß,
    Andy

    Hi!

    I think I remember them all being blue last time I checked. If you only want it done on the contact section then switch it to this.

    <style type = "text/css">
    #contact h2 {
        color: #32587f !important;
        font-size: 45px !important;
        font-family: 'Bitter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
    }
    </style>
    

    Regards,
    Elliott

    #513843

    Topic: Heading + Text height

    in forum Enfold
    c3computers
    Participant

    http://etoile.lookmedia.nl/

    Hi!

    How do i get the text to the top.

    Soming like this:

    <section class="av_textblock_section" itemscope="itemscope" itemtype="https://schema.org/CreativeWork" style="
        padding-bottom: 500px;
    "><div class="avia_textblock " style="font-size:20px; " itemprop="text"><p style="text-align: center;">Welkom bij Etoile. Wilt u persoonlijke aandacht ontspanning en tijd voor uzelf? Kies dan voor Etoile!
    
    </div></section>

    Ive added the code +500px in chome to test. But i dont think that PX are the right solution because of the mobile screens?

    Tnx!

    #513823

    Hey midischool!

    sure, use this code in Quick CSS field:

    h2.portfolio-preview-title.entry-title {
    font-weight: normal;
    font-size: 12px;
    }
    

    and adjust as needed.

    Best regards,
    Andy

    #513793

    Hey qeeqac!

    use this code inside your Quick CSS field for your icons:

    @media only screen and (max-width: 767px) {
    .iconlist_icon.avia-font-entypo-fontello {
    width: 25px; 
    height: 25px;
    line-height: 25px;
    font-size: 15px;
    }}
    

    and this for the layout:

    @media only screen and (max-width: 767px) {
    ul.avia-icon-list.avia-icon-list-right.avia_animate_when_almost_visible.avia_start_animation {
    margin-left: -38px;
    }
    .avia-icon-list-container.avia-builder-el-72.avia-builder-el-no-sibling {
    margin-right: -38px;
    }}
    

    Cheers!
    Andy

    #513777

    Hey!

    are you talking about font-weight or font-size? if you want to change font-size use this

    font-size: 12px;
    

    Yes it is possible to have more than one toggle open at once. Edit accordion element and look for “Behavior”, choose “Toggle Mode”.

    Best regards,
    Andy

    #513756

    Hey!

    Refer to:
    http://kriesi.at/documentation/enfold/mailchimp-integration/

    But instead of the CSS code mentioned there, use the following:

    .wpcf7 form{clear:both}
    .wpcf7 p br{display:none}
    .wpcf7 label{display:block;visibility:visible;position:relative;margin-bottom:7px;font-weight:600}
    .wpcf7 p{position:relative;clear:both;float:left;width:100%}
    .wpcf7 p.hidden{position:absolute;width:0;left:0;top:0}
    .wpcf7 .form_element_half{width:48%;float:left;margin-left:2%;clear:none}
    .wpcf7 .form_element_third{width:32.6%;float:left;margin-left:1%;clear:none}
    .wpcf7 .form_element_two_third{width:66.4%;float:left;margin-left:1%;clear:none}
    .wpcf7 .form_element_fourth{width:24.2%;float:left;margin-left:1%;clear:none}
    .wpcf7 .form_element_three_fourth{width:74.8%;float:left;margin-left:1%;clear:none}
    .wpcf7 .first_form{clear:both;margin-left:0}
    @media only screen and (max-width: 479px) { .responsive .wpcf7 .form_element{width:100%;clear:both;margin-right:0;margin-left:0;float:none} }
    #top .wpcf7 input[type='text'],#top .wpcf7 input[type='tel'],#top .wpcf7 input[type='email'],#top .wpcf7 select,#top .wpcf7 textarea{width:100%;margin-bottom:0;display:inline;min-width:50px;padding:13px;border-radius:2px}
    #top .wpcf7 select{-webkit-appearance:none;border-radius:0;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAANCAYAAAC+ct6XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjBBRUQ1QTQ1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjBBRUQ1QTU1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMEFFRDVBMjVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMEFFRDVBMzVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5mU4QAAACUSURBVHjaYmRgYJD6////MwY6AyaGAQIspCieM2cOjKkIxCFA3A0TSElJoZ3FUCANxAeAWA6IOYG4iR5BjWwpCDQCcSnNgxoIVJCDFwnwA/FHWlp8EIpHSKoGgiggLkITewrEcbQO6mVAbAbE+VD+a3IsJTc7FQAxDxD7AbEzEF+jR1DDywtoCr9DbhwzDlRZDRBgACYqHJO9bkklAAAAAElFTkSuQmCC);background-position:center right;background-repeat:no-repeat;border-radius:2px}
    .wpcf7 .button{margin:0;padding:16px 20px;border-radius:2px;border-bottom-width:1px;border-bottom-style:solid;font-weight:400;font-size:12px;min-width:142px;outline:none}
    .wpcf7 .modified_width .button{width:100%;padding:13px 10px 14px;min-width:0}
    .wpcf7 p input,.wpcf7 p textarea,.wpcf7 p select{-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s ease-in-out}
    
    #top .wpcf7 { position: relative; }
    #top .mc4wp-response{ clear: both; }

    Cheers!
    Josue

    #513725
    mmsdev
    Participant

    Hi.

    Can you please tell me how to change the font weight and size of the portfolio titles when they are opened in
    AJAX format?

    Please click on any portfolio image on this page (portfolios are towards the bottom) and you will see the titles look like this..In bold I would to change that..

    #513645

    In reply to: Various Questions

    Hi Jsm3081!

    Thank you for your kind words :)

    1- Yes, please try using this plugin – https://wordpress.org/plugins/zen-menu-logic/
    2- Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    #socket {
        font-size: 14px;
    }

    Regards,
    Yigit

    #513550

    Hi,

    Please try this as well:

    .av-inner-masonry-content {
    font-size:26px !important;
    }

    You might have to adjust the value 26 to fit your liking.

    Regards,
    Rikard

    #513514

    Hi Rikard,

    Thanks, everything but the font size work.
    I increased it from 700 to 900 but saw no difference and it still is the same.

    Also, is there a way to have more toggles open at once?

    Antonio

    #513470

    Hey simonac!

    Thank you for using Enfold.

    1.) Try to resize the arrow with this in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    #top .avia-slideshow-arrows a {
        height: 30px;
        line-height: 12px;
        font-size: 12px;
        text-indent: -600%;
    }
    
    #top .av-control-minimal .avia-slideshow-arrows a:before {
        line-height: 30px;
    }
    }

    2.) Add this inside the media query above:

    #top .avia-logo-element-container .slide-entry {
    width: 33%;
    }

    3.) Add something like this in the slider caption:

    <div id="team_mobile"></div>
    

    Cheers!
    Ismael

    #513349

    In reply to: words positioning

    Hi David57!

    We can try to reduce the font size and move it more to the left on smaller screens. Send us a link to your page and we’ll take a look. You can set your reply as private if you wish.

    Cheers!
    Elliott

    #513303

    Many thanks, my friend. That worked.

    Just to follow up, how do you edit the font size of the caption?

    #513222

    Hi!

    which changes exactly do you wish? I suggest to make font size smaller:

    @media only screen and (max-width: 767px) {
    h2.avia-caption-title {
    font-size: 13px;
    }}
    

    Best regards,
    Andy

    #513216

    Hi!

    I tried this code and it seems to work fine:

    a.iconlist_icon.avia-font-entypo-fontello {
    height: 30px;
    width: 30px;
    line-height: 21px;
    left: 15px;
    }
    span.iconlist-char {
    font-size: 20px;
    }
    

    Can you provide us admin access, so we can try the code inside you Quick CSS field? post login details here as private reply.

    Best regards,
    Andy

    Hey JuldanInc!

    Hmm, it should still be applied there since it’s under a main_color section. Not sure why it’s not being applied but you can add a codeblock element to the page and add this inside for a quick fix.

    <style type = "text/css">
    h2 {
        color: #32587f !important;
        font-size: 45px !important;
        font-family: 'Bitter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
    }
    </style>

    Cheers!
    Elliott

Viewing 30 results - 12,841 through 12,870 (of 18,738 total)