Viewing 30 results - 2,701 through 2,730 (of 18,729 total)
  • Author
    Search Results
  • #1300370

    Hi Tim,

    I did test it out on your site by changing this code in style.css of the child theme to 18px (turned it back after checking) then just change the version number from 1.0.1 to 1.0.2 to 1.0.3 (increment by one after each change) and it worked properly:

    #tel {
        font-size: 17px !important;
    }

    You can also use Quick CSS for it since the change does show unlike style.css
    As for layout.css I believe that’s in the parent theme, since it caches styles and js files, to force it to fetch new ones, you need to increment the version number before checking for example it’s now 4.8.2, you can change it to 4.8.2.1 then you’ll see these changes show up properly.

    Best regards,
    Nikko

    #1300310

    read here an interesting article: https://css-tricks.com/how-do-you-do-max-font-size-in-css/

    maybe you can use on quick css :

    #top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1 {
        font-size: min(max(36px, 10vw), 80px);
        line-height: 1.2em;
        font-weight: 900;
        text-transform: uppercase;
        hyphens: auto;
    }

    min(max(36px, 10vw), 80px); means max font-size is 80px – ( it starts shrinking when 80px is the 1/10 of the screen width (800px) )
    if you got 5vw ( it starts shrinking when the 80px is 1/20 of the screen width ( it is 1600px )
    36px is the min font-size

    #1300244

    Hey ingredientecosmetice,

    The font size and line height is editable under Advanced Styling. If those settings are not applying on your site, then please post admin WordPress login details in private, so that we can have a closer look.

    Best regards,
    Rikard

    #1300098

    Hello Nikko,

    I can follow your argumentation, BUT: I don’t have this issues in older projects where I also use enfold by the same hoster?

    And the main problem is: I now don’t know if my css works or not, and I can’t wait one day to chek it!

    For example: Please have a look at the header. I want to style the tel-Link. If i do it in the enfold-editor with
    it works (but with this way I can’t style hover-behaviour…).

    If I style it in the style.css with this 3 different options:

    a[href*=”tel”] {font-size: 17px !important;}
    header a {font-size: 17px !important;}
    a#tel {font-size: 17px !important;}

    it doesn’t.
    So this really drives me crazy, you never know if it is a caching or a css-syntax problem. What is going on in this specail case? I have the same Problems styling the form:

    So what can I do now to fluidly work on my project and see my css-chages immediatly? Any suggestions what exactly should communicate to my Hoster about caching problems?

    Best Regards
    Tim

    #1299998

    Hi, your theme is really awesome and I’m really having fun playing with it, but there are some things I don’t understand how to modify.
    I’ve tried editing the sub menu style using the advanced styling, but it is only changing the background and font color, and I really wanted to change the font size and the line spacing of the sub menu. How should I do this?

    m f
    Guest

    I am using plugin ti wishlist and I have a heart icon on the paintings I want to make som css custom to the heart color , I tryed to use this code but it gives my problem , if I clic on the heart servel times the background color become gry
    .tinv-wishlist {
    background-color: #cac7c7;
    opacity: 0.5;
    color: #FFF;
    font-weight: bold;
    padding: 5px 20px 5px 20px;
    }
    .tinv-wishlist:hover {
    background-color: #E6A777;
    color: #FFF;
    padding: 5px 20px 5px 20px;
    }
    https://stackoverflow.com/questions/64303518/how-to-place-a-heart-button-with-css
    and I used this code , it work but, when I clic on heart servel times the same problem , the background get gry
    {
    background-color: #cac7c7;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    display: inline;

    }
    #heart{
    font-size: 25px;
    }
    #heart:hover{
    color:red;
    }

    #1299869
    jskindustrial
    Participant

    I added javascript particles.js
    https://vincentgarreau.com/particles.js/
    I downloaded and extract in child theme, i added css code

    /* —- base —- */
    html{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
    canvas{
    display:block;
    vertical-align:bottom;
    }
    /* —- particles.js container —- */
    #particles-js {
    position:absolute;
    width: 100%;
    height: 100%;
    background-image: url(”);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    top: 0;
    }

    /* =============================================================================
    HTML5 CSS Reset Minified – Eric Meyer
    ========================================================================== */

    html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
    body{line-height:1}
    article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
    nav ul{list-style:none}
    blockquote,q{quotes:none}
    blockquote:before,blockquote:after,q:before,q:after{content:none}
    a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
    mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
    del{text-decoration:line-through}
    abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
    table{border-collapse:collapse;border-spacing:0}
    hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
    input,select{vertical-align:middle}
    li{list-style:none}

    /* =============================================================================
    My CSS
    ========================================================================== */

    /* —- base —- */

    html,body{
    width:100%;
    height:100%;
    background:#111;
    }

    html{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    body{
    font:normal 75% Arial, Helvetica, sans-serif;
    }

    canvas{
    display:block;
    vertical-align:bottom;
    }

    /* —- stats.js —- */

    .count-particles{
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    }

    .js-count-particles{
    font-size: 1.1em;
    }

    #stats,
    .count-particles{
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
    }

    #stats{
    border-radius: 3px 3px 0 0;
    overflow: hidden;
    }

    .count-particles{
    border-radius: 0 0 3px 3px;
    }

    /* —- particles.js container —- */

    #particles-js{
    width: 100%;
    height: 100%;
    background-color: #b61924;
    background-image: url(”);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    }
    i added js code in app.js

    “particles”: {
    “number”: {
    “value”: 80,
    “density”: {
    “enable”: true,
    “value_area”: 800
    }
    },
    “color”: {
    “value”: “#ffffff”
    },
    “shape”: {
    “type”: “circle”,
    “stroke”: {
    “width”: 0,
    “color”: “#000000”
    },
    “polygon”: {
    “nb_sides”: 5
    },
    “image”: {
    “src”: “img/github.svg”,
    “width”: 100,
    “height”: 100
    }
    },
    “opacity”: {
    “value”: 0.5,
    “random”: false,
    “anim”: {
    “enable”: false,
    “speed”: 1,
    “opacity_min”: 0.1,
    “sync”: false
    }
    },
    “size”: {
    “value”: 5,
    “random”: true,
    “anim”: {
    “enable”: false,
    “speed”: 40,
    “size_min”: 0.1,
    “sync”: false
    }
    },
    “line_linked”: {
    “enable”: true,
    “distance”: 150,
    “color”: “#ffffff”,
    “opacity”: 0.4,
    “width”: 1
    },
    “move”: {
    “enable”: true,
    “speed”: 6,
    “direction”: “none”,
    “random”: false,
    “straight”: false,
    “out_mode”: “out”,
    “attract”: {
    “enable”: false,
    “rotateX”: 600,
    “rotateY”: 1200
    }
    }
    },
    “interactivity”: {
    “detect_on”: “canvas”,
    “events”: {
    “onhover”: {
    “enable”: true,
    “mode”: “repulse”
    },
    “onclick”: {
    “enable”: true,
    “mode”: “push”
    },
    “resize”: true
    },
    “modes”: {
    “grab”: {
    “distance”: 400,
    “line_linked”: {
    “opacity”: 1
    }
    },
    “bubble”: {
    “distance”: 400,
    “size”: 40,
    “duration”: 2,
    “opacity”: 8,
    “speed”: 3
    },
    “repulse”: {
    “distance”: 200
    },
    “push”: {
    “particles_nb”: 4
    },
    “remove”: {
    “particles_nb”: 2
    }
    }
    },
    “retina_detect”: true,
    “config_demo”: {
    “hide_card”: false,
    “background_color”: “#b61924”,
    “background_image”: “”,
    “background_position”: “50% 50%”,
    “background_repeat”: “no-repeat”,
    “background_size”: “cover”
    }
    i added code in function.php
    function enfold_customization_custom_js() {
    ?>
    <script type = “text/javascript” src = “http://test.jskindustrial.com/wp-content/themes/enfold-child/particles.js-master/particles.js-master/particles.js”></script&gt;
    <script type = “text/javascript” src = “http://test.jskindustrial.com/wp-content/themes/enfold-child/particles.js-master/app.js”></script&gt;
    <?php
    }
    add_action( ‘wp_footer’, ‘enfold_customization_custom_js’ );
    but it show nothing in output

    #1299812

    In reply to: CSS

    Hi Susanne,

    Please change the CSS code to this one:

    #top.page-id-6237 #wrap_all .all_colors h2 {
      font-size: 20px;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1299798

    In reply to: Button Schriftgröße

    Hi Alex,

    Can you try adding this CSS code in Quick CSS:

    #top .mytoggle .av_toggle_section .avia_iconbox_title {
        font-size: 18px;
        font-weight: bold;
    }

    Best regards,
    Nikko

    #1299682

    Topic: CSS

    in forum Enfold
    tiefenschaerfe
    Participant

    Hello!
    I use among others the plugin WCFM (multivendor plugin). In it I wanted to make changes via the Enfold short CSS, but they do not take effect.
    Do you have any ideas?
    Concerns the the font size of the Vendor-headings in the store list. From H2 to H3
    On this page: Link: https://portal.kijuaa.de/anbieter/uebersicht/

    The WCFM support wrote me the following CSS code. But when I enter it – as usual – in Enfold-Quick CSS, nothing happens. The font size does not change.
    Why?

    best regards
    Susanne

    .page-id-6237 #top #wrap_all .all_colors h2 {
    font-size: 20px;
    }

    Thanks Nikko!

    I activate the debug mode, so in the test exemple, only with a text block that contains “11111111”, in the debug area shows me:

    [av_one_full first min_height='' vertical_alignment='av-align-top' space='' row_boxshadow='' row_boxshadow_color='' row_boxshadow_width='10' custom_margin='' margin='0px' mobile_breaking='' border='' border_color='' radius='0px' padding='0px' column_boxshadow='' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' background_position='top left' background_repeat='no-repeat' highlight='' highlight_size='' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' template_class='' aria_label='' av_uid='av-2jepct' sc_version='1.0']

    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' template_class='' av_uid='av-koj4zueh' sc_version='1.0' admin_preview_bg='']
    1111111
    [/av_textblock]

    [/av_one_full]

    In the page “Quality” I get the problem editing with advanced layout builder:
    https://joanv22.sg-host.com/wp-admin/post.php?post=827&action=edit&lang=en
    In this page, when I edit the block content “Lorem ipsum dolor…” I get the problem ans also it doesn’t show the debug area, so I can’t see the code…

    I have some webs with enfold and never i happens to me. In this web there is woocommerce and the others there are not.
    Is it possible a bug betwen woocommerce and advance layout editor?
    At this moment I need to work quick because the calendar, so I will be switching to default editor, update and continous editing with the advanced laoyout editor.

    Have a good week!

    Joan

    #1299544

    In reply to: Button Schriftgröße

    Hey Alexandervc33,

    Add this to quick css:

    .toggle_content .avia-button-wrap font font{
    font-size:14px!important;
    font-weight:bold!important;
    }

    Best regards,
    Jordan Shannon

    #1299526

    Hi Alex,

    You’re welcome.
    As for the main menu links font size, you can change them in Enfold > Advanced Styling > (Select an element to customize) pick Main Menu Links then click on Edit Element.
    A box for Main Menu Links options should appear below, just change the font size then save.
    Hope this helps.

    Best regards,
    Nikko

    #1299503

    Thank worked, thank you! After some troubleshooting, I figured out the font size needs to be set to “default” for it to work.

    #1299485

    Hi Ryan

    Then please edit Text Block elements you would like to customize and go to Advanced > Developer Settings tab and give it a Custom ID (“custom-text-block” in examle below) and add following code to Quick CSS in Enfold theme options > General Styling

    #custom-text-block { font-size: 80px; } 

    Best regards,
    Yigit

    #1299426

    Thank you! I was able to edit one specific section of a text line using that. Now how do I edit the rest of the line? I want the whole font line to be 80px, but the maximum font size for paragraph text is 40px.

    bcnsites
    Participant

    Hi,
    I’m working with enfold 4.8.1. and “Shop Demo” imported.

    For exemple, if I insert the “Tab” element in a page, it’s coming with some code in the “Tab Content”, in white color, like
    “<p>[av_tab_container initial='1' position='top_tab' boxed='border_tabs' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' alb_description='' id='' custom_class='' template_class='' av_uid='av-9my2' sc_version='1.0']<br />[av_tab title='Tab 1' av_uid='av-6yji'][/av_tab]<br />[av_tab title='Tab 2' av_uid='av-4t2c'][/av_tab]<br />[/av_tab_container][av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='av-3v26' sc_version='1.0']<br />This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:…or something like this:As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!<br />[/av_textblock]</p>”
    If I delete this code, it remains again.

    The same happens when I insert a “Text Block”, I get this code, which I can’t clean:
    <p>[av_google_map height='400px' zoom='auto' saturation='-50' hue='#6786a1' zoom_control='aviaTBzoom_control' mobile_drag_control='aviaTBmobile_drag_control' av_uid='av-jjl2k']<br />[av_gmap_location address='8500 Beverly Boulevard' city='Los Angeles' country='USA' long='-118.37749329999997' lat='34.0753309' marker='555' imagesize='40' av_uid='av-irjck'][/av_gmap_location]<br />[av_gmap_location address='Rodeo Drive' city='Los Angeles' country='USA' long='-118.39944809999997' lat='34.0561846' marker='555' imagesize='40' av_uid='av-i0hi8'][/av_gmap_location]<br />[av_gmap_location address='10250 Santa Monica Boulevard' city='Los Angeles' country='USA' long='-118.41942949999998' lat='34.0596331' marker='555' imagesize='40' av_uid='av-hh19w'][/av_gmap_location]<br />[av_gmap_location address='Robertson Boulevard' city='Los Angeles' country='USA' long='-118.385066' lat='34.0494729' marker='555' imagesize='40' av_uid='av-h4qww'][/av_gmap_location]<br />[av_gmap_location address='10800 West Pico Boulevard' city='Los Angeles' country='USA' long='-118.42746890000001' lat='34.0401391' marker='555' imagesize='40' av_uid='av-1nw5k'][/av_gmap_location]<br />[/av_google_map][av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='' av_uid='av-fq07s']<br />[av_cell_two_third vertical_align='top' padding='30px,60px,30px,60px' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-fbhu8'][av_contact email='' title='' button='Submit' on_send='' sent='Your message has been sent!' link='manually,http://' subject='' autorespond='' captcha='' color='' av_uid='av-1fr6c']<br />[av_contact_field label='Name' type='text' options='' check='is_empty' width='element_third' av_uid='av-e92fg'][/av_contact_field]<br />[av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_third' av_uid='av-diudc'][/av_contact_field]<br />[av_contact_field label='Topic' type='select' options='Product Questions, Payment, Delivery, Refund, My Orders, My Account, Coupons, Other' check='is_empty' width='element_third' av_uid='av-d25tw'][/av_contact_field]<br />[av_contact_field label='Message' type='textarea' check='is_empty' options='' width='' av_uid='av-c8mek'][/av_contact_field]<br />[/av_contact][/av_cell_two_third][av_cell_one_third vertical_align='middle' padding='30px' padding_sync='true' background_color='#6786a1' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-bnzys'][av_textblock size='' font_color='custom' color='#ffffff' av_uid='av-azagk']Enfold Flagship StoreShopping Mall Rodeo Drive<br />Los Angeles, USA (Email address hidden if logged out) <br />555-8653 364Opening Hours:<br />Mo-Fr: 8:00-19:00<br />Sa: 8:00-14:00<br />So: closed[/av_textblock][/av_cell_one_third]<br />[/av_layout_row][av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='alternate_color' custom_bg='' 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_uid='av-aivn4'][av_one_half first av_uid='av-9oabw'][av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='' sc_version='1.0']<br />Click here to add your own text<br />[/av_textblock][/av_one_half][av_one_half av_uid='av-8vnp4'][av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='' sc_version='1.0']<br />Click here to add your own text<br />[/av_textblock][/av_one_half][/av_section]</p>
    I cleaned all the cache: server, wordpress and browser, but still the problem is alive.
    I test it in 2 laptops, sometimes one of them works better, but at this moment always I get the problem.
    You can see this print screen:
    enfold-cant-edit.png

    Any suggestions would be great!
    Thanks in advance & Have a good week!.

    Joan

    #1299282

    Hi Alexandervc33,

    I have added this class name mytoggle in your Accordion > Styling (tab) > Developer Settings > Custom CSS Class.
    Then in Enfold > General Styling > Quick CSS, I add this CSS Code:

    #top .mytoggle .toggler {
        background-color: #e1e5f2 !important;
        border: none;
        position: static;
    }
    
    #top .mytoggle .toggle_content {
        background-color: #e1e5f2 !important;
        border: none;
        margin: 0;
    }
    
    #top .mytoggle > .av_toggle_section:nth-child(even) .toggler, 
    #top .mytoggle > .av_toggle_section:nth-child(even) .toggle_content {
        background-color: #c6cce0 !important;
    }
    
    #top .mytoggle .toggle_icon {
        left: auto;
        right: 10px;
        border: none;
        transform: translateY(-50%);
    }
    
    #top .mytoggle .toggle_icon:before {
        content: '\e875';
        font-family: 'entypo-fontello';
        font-size: 32px;
    }
    
    #top .mytoggle .activeTitle .toggle_icon:before,
    #top .mytoggle .toggle_icon span {
        display: none;
    }

    Please review your site. :)

    Best regards,
    Nikko

    #1299224

    Hi ymcrodos,

    Thanks for giving us a screenshot of what you’re trying to achieve.
    There’s no option to add it, however it can be done by adding this CSS code in Quick CSS:

    #top #header .av-main-nav-wrap:before {
        content: 'The Title';
        font-size: 32px;
        font-weight: bold;
        width: 140px;
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
    }

    Just change the The Title with the title that you want to use, adjust the font size, font weight and the width.
    Hope this helps.

    Best regards,
    Nikko

    #1299087

    Hi,

    Thanks for the update.

    Footer widget headers; I’m seeing the same size on the front and sub pages on my end, could you try loading the site in an incognito or private browser window to see if that helps please?

    Font size in the main menu; I’m seeing the same size on the home and sub pages here as well, please refer to the answer above.

    Cookie message;

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

    span.cn-notice-text {
        font-size: 18px;
        color: red;
    }
    
    .cn-button.wp-default {
        color: white;
        background: green;
        font-size: 20px;
    }

    Best regards,
    Rikard

    Hi John,

    Please try to wrap the symbol in a span like so:

    <span class="copyright-header">Copyright</span>

    Then add this to Quick CSS:

    .copyright-header {
      font-size: 16px !important;
    }

    You don’t need to pay any attention to the warning in the Special Heading element, as long as you close the markup you add properly.

    Best regards,
    Rikard

    #1298877

    Hi,

    No problem. Looks like you have also managed to adjust the style or position of the switcher on mobile using a css media query.

    @media only screen and (max-width: 767px) {
        #av-custom-lang-switcher {
           position: absolute;
           right: 26px;
           bottom: -5px;
           z-index: 9999;
           text-transform: uppercase;
           font-size: 12px;
        }
    }

    Best regards,
    Ismael

    #1298855
    DouPaule
    Participant

    Hey,
    please have a look at the URL in private field in screensizes between 480 und 767px.
    Watch the size of the header.
    Inspector says 20px but there is no rule in the CSS that says 20 – it says 14.
    Why is that and how can i fix that?

    Kind regards
    Chris

    Here is the actual CSS:

    
    /*Shop*/
    .product p.wc-gzd-additional-info {
    	display: none !important;
    }
    #top .onsale {
    	border-radius: 6px !important;
    	padding: 0 5px !important;
    }
    .products .product h2, .products .product h3, .products .product h4, .products .product h5, .products .product h6, h2.woocommerce-loop-product__title {
    	font-size: 1.5em !important;}
    .beschreibinliste {
    	font-size: 11px !important;
    	line-height: 13px !important;
    	margin: 0 0 36px 0!important;
    }
    .inner_product div {
    	line-height: 11px;
    	font-size: 11px;
    	color: #7B7B7B;}
    
    #top .avia_cart_buttons .button {
    	background-color: #2d5c88 !important;
    	color: #ffffff !important;}
    
    ul.products li strong {
    	display: inline !important;
    }
    
    /*ALLGEMEIN*/
    
    .weiterethemen{font-size: 17px !important;
    font-weight: bold !important;}
    #top .aviaccordion-preview-title h3 {
    	color: #fff !important;
    	font-size: 14px !important;}
    
    /*SLIDER*/
    .slidedescfirst {
    	/*Im ersten Slide auf startseite ist eine erste zeile die hervorgehoben werden soll*/
    	font-weight: bold !important;
    	font-size: 22px !important;
    	line-height: 1.5em !important;}
    .caption_framed .slideshow_caption .avia-caption-title, .caption_framed .slideshow_caption .avia-caption-content p {
      margin: 0 !important;}
    .avia_transform .av_slideshow_full .avia-caption-title {
    	color: #ffffff !important;}
    
    .responsive #top .slideshow_caption .avia-caption-content {
    	
    	text-align: left !important;
    	hyphens: auto !important;
    }
    
    .angebotslider .avia-caption-title {
    	font-size: 29px !important;}
    .angebotslider .avia-caption-content {
    	line-height: 1.3em;
    	font-size: 13px !important;
    	text-align: left !important;
    	hyphens: auto !important;}
    #zeitgestaltung .slideshow_caption {
    	width: 64%;}
    	
    /*##### SEITEN ######*/
    /*ANGEBOTE & CHILDPAGES*/
    .cc-child-pages-thumb {
      margin: 11px 15px 9px 13px !important;
      float: none;
      padding: 8px;
      background: #fff;
      border: 1px solid #efefef;
      border-radius: 5px;
      box-shadow: 3px 4px 3px #efefef;}
    .ccchildpages {
    	border: 1px solid #ccc;
    	border-radius: 5px;
    	box-shadow: 4px 4px 5px #cccccc;
    	background-repeat: repeat;}
    .ccchildpage h3 {
    	font-size:15px !important;}
    .ccchildpage {
    	background: #fafafa;
    	border: 1px solid #ccc;
    	border-radius: 5px;
    	box-shadow: 4px 4px 5px #cccccc;
    	min-height: 510px !important;
    	position:relative;}
    .ccpages_more a {
    	font-size: 100%;
    	border: 10px solid #c05f5f !important;
    	background: #c05f5f;
    	color: #ffffff !important;
    	font-weight: bold !important;
    	border-radius: 7px;
    	position: absolute;
    	bottom: 15px;}
    
    /* #Media Queries
    ================================================== */
    
    	/* kleiner als 990 (devices and browsers) */
    	@media only screen and (max-width: 989px) {
    		 #full_slider_1, 
      #full_slider_1 .av_slideshow_full.avia-slideshow,
      #full_slider_1  .avia-slideshow-inner,
      #full_slider_1 .avia-slideshow li,
      #full_slider_1 .avia-slideshow li img {
        min-height: 240px;}
      #full_slider_1 .avia-slideshow li img {
        width: 140% !important;
        max-width: auto;}
       .html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
          padding-top: 0px;}
    .angebotslider .avia-caption-title {
    	font-size: 22px !important;}
    .angebotslider .avia-caption-content {
    	line-height: 1.25em;
    	font-size: 12px !important;}
    }
    
    	/* zwischen 768 und 990 Tablet Portrait (devices and browsers) */
    	@media only screen and (min-width: 768px) and (max-width: 989px) {
    .ccchildpage {
    	min-height: 450px !important;}	
    #zeitgestaltung .slideshow_caption {
    	width: 64%;}
    .angebotslider .avia-caption-title {
    	font-size: 18px !important;}
    .angebotslider .avia-caption-content {
    	line-height: 1.25em;
    	font-size: 12px !important;}
    
    }
    			
    
    	/* kleiner als 768 */
    	@media only screen and (max-width: 767px) {
    
    	 	}
    
    	/* zwischen 768 und 480 */
    	@media only screen and (min-width: 480px) and (max-width: 767px) {
    .ccchildpage {
    	min-height: 550px !important;}	
    .cc-child-pages-thumb {
      margin:11px 7px 9px 0px !important;
      padding: 5px;}
    		#startseite .av_slideshow_full .container.caption_container {
    	top: 0px !important;
    	height: 55% !important;}
    		.angebotslider .avia-caption-title {
    	font-size: 14px !important;}
    .angebotslider .avia-caption-content {
    	line-height: 1.15em;
    	font-size: 11px !important;}
    	}
    
    	/* zwischen 480 und 319 */
    	@media only screen and (min-width: 319px) and (max-width: 480px) {
    .ccchildpage {
    	min-height: 405px !important;}
    .cc-child-pages-thumb {
      margin: 11px 0px 9px 0px !important;
      padding: 5px;}
    
    .responsive #top .slideshow_caption .avia-caption-content {
    	text-align: left !important;
    	hyphens: auto !important;
    	font-size: 12px !important;
    	line-height: 1.2em !important;
    }
    .responsive #top .slideshow_caption h2 {
    	font-size: 16px !important;}
    #startseite .av_slideshow_full .container.caption_container {
    	top: 0px !important;
    	height: 55% !important;}
    		
    	}
    	
    	/* kleiner als 319 */
    	@media only screen and (max-width: 319px) {
    .ccchildpage {
    	min-height: 350px !important;}
    .cc-child-pages-thumb {
      margin: 11px 0px 9px 0px !important;
      padding: 5px;}
    		
    
    .responsive #top .slideshow_caption .avia-caption-content {
    	text-align: left !important;
    	hyphens: auto !important;
    	font-size: 11px !important;
    	line-height: 1.1em !important;
    }
    .responsive #top .slideshow_caption h2 {
    	font-size: 14px !important;
    }
    
    #1298811

    Hi Ismael,

    1) Unfortunately the font “Oswald” is called “Static”. For H1 headings and such, it is the same fontname.
    2) No, this must have another reason. I tried it with the image of erkant. In the result it is the same. I also set the video to 4:3. And then moreover the minimum size even set to 550 px (on erkant it is 350). Nothing works.
    One thing is for sure: it is only so if the video is included. Without, it fits.

    How can I solve the problem? I like the video :-)

    best regards
    Susanne

    #1298760

    Hi,

    You can try this css code to increase the size of the font icons.

    #top .iconbox.av-no-box .iconbox_icon {
    	margin: 0 auto 20px auto;
    	width: 90px;
    	height: 90px;
    	line-height: 90px;
    	font-size: 50px;
    }

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    #1298736

    Hi, Rikard.

    Thank you very much for your reply again.

    Unfortunately, increasing the padding of the active tab was not what I was looking for, because tab titles that were shown in two lines (e.g. “Assistenz der Geschäftsführung”) didn´t change with that.

    I have now tried several css codes that I could find for enfold tabs and it finally worked with the following one:

    @media only screen and (min-width: 1200px) {
    .page-id-26 .tab_titles {
    width: 500px !important;
    }
    }

    Still your codes helped me a lot to make further adjustments.
    Please see screemshot.
    So thank you very much for your support and for your patience. :)

    To adapt the layout for smaller screens (tablets), I also used the following codes:

    @media only screen and (min-width: 767px) {
    .page-id-26 .tabcontainer .tab_titles div {
    font-size: 14px!important;
    padding-top: 1px;
    }
    }

    @media only screen and (min-width: 767px) {
    .page-id-26 .tab_titles {
    width: 245px;
    }
    }

    @media only screen and (min-width: 767px) {
    .page-id-26 .active_tab_content {
    padding-left: 102px !important;
    }
    }

    @media only screen and (min-width: 767px) {
    .page-id-26 .tab_inner_content {
    margin-top: -23px!important;
    }
    }

    For me as a layman it looks a bit bumbling, but if it’s technically ok, I’ll leave like that because it seems to work (!?).

    Best regards,
    fkm

    #1298719

    Topic: font style blog

    in forum Enfold
    rixi
    Participant

    Good morning,
    could you tell me where i can find the font style options for the blog posts?
    On my main blog side the H3 is automatically taken but i would like the have instead of the font Rockwell the Open Sans. And i would like to be able change the size
    On the post itself the other way around. Instead of Open Sans the Rockwell.
    Would be great for quick css

    Thanks a lot
    Rixi

    Hi,

    We added this snippet in the functions.php file to replace the description with the actual product archive title.

    
    add_action( 'init', 'avia_woocommerce_full_width_category_images', 50 );
    function avia_woocommerce_full_width_category_images()
    {
       	remove_action( 'ava_after_main_container', 'avia_woocommerce_shop_banner', 11 );
    	remove_action( 'ava_after_main_container', 'avia_woocommerce_big_cat_banner', 11 );
    	add_action( 'ava_after_main_container', 'avia_woocommerce_big_cat_banner_child_theme', 11);
    	//add_action( 'ava_after_main_container', 'avia_woocommerce_shop_banner_child_theme', 11);
    
    	function avia_woocommerce_shop_banner_child_theme()
    	{
    		global $avia_config;
    
    		if(is_shop() || (is_product_category() && avia_get_option('shop_banner_global') == "shop_banner_global") && !isset($avia_config['woo-banner']))
    		{
    			$options = avia_get_option();
    
    			if( isset( $options['shop_banner'] )  && ( $options['shop_banner'] == 'av-active-shop-banner' ) )
    			{
    				$bg 		= $options['shop_banner_image'];
    				$overlay 	= $options['shop_banner_overlay_color'];
    				$opacity 	= $options['shop_banner_overlay_opacity'];
    				$description= wpautop($options['shop_banner_message']);
    				$font 		= $options['shop_banner_message_color'];
    
    				echo avia_woocommerce_parallax_banner($bg, $overlay, $opacity, $description, $font);
    			}
    		}
    	}
    
    	function avia_woocommerce_parallax_banner_child_theme($bg, $overlay, $opacity, $description, $font)
    	{
    
    		if(is_numeric($bg))
    		{
    			$bg = wp_get_attachment_image_src($bg, 'full');
    			if(is_array($bg) && $bg[0] != "") $bg = $bg[0];
    		}
    
    		if($font) $font = "style='color:{$font};'";
    		if($bg) $bg = "background-image: url(".$bg.");";
    
    		$output = "";
    
    		$output .='
    <div id="av_product_description" class="avia-section main_color avia-section-large avia-no-border-styling avia-full-stretch av-parallax-section av-section-color-overlay-active avia-bg-style-parallax container_wrap fullsize" data-section-bg-repeat="stretch" '.$font.'>';
    		$output .='
    <div class="av-parallax  avia-full-stretch" data-avia-parallax-ratio="0.3">';
    		$output .='
    <div class="av-parallax-inner" style="'.$bg.' main_color background-attachment: scroll; background-position: 50% 50%; background-repeat: no-repeat;">';
    		$output .='</div>
    ';
    		$output .='</div>
    ';
    
    		$output .='
    <div class="av-section-color-overlay-wrap">';
    		if(!empty($overlay))
    		{
    			$output .='
    <div class="av-section-color-overlay" style="opacity: '.$opacity.'; background-color: '.$overlay.'; "></div>
    ';
    		}
    
    		$output .='
    <div class="container">';
    		$output .='<main class="template-page content av-content-full alpha units">';
    		$output .= "
    <h1>".get_the_archive_title()."</h1>
    ";
    		if(false) $output .= "
    <h1>".$description."</h1>
    ";
    		$output .='</main></div>
    </div>
    </div>
    ';
    
    		return $output;
    	}
    
    	function avia_woocommerce_big_cat_banner_child_theme()
    	{
    		if(is_product_category())
    		{
    			global $wp_query, $avia_config;
    
    			if(isset($wp_query->query_vars['taxonomy']))
    			{
    				$term = get_term_by( 'slug', get_query_var($wp_query->query_vars['taxonomy']), $wp_query->query_vars['taxonomy']);
    				if(!empty($term->term_id))
    				{
    					$description 	= term_description() ;
    					$style 			= get_woocommerce_term_meta($term->term_id, 'av_cat_styling');
    					$attachment_id 	= get_woocommerce_term_meta($term->term_id, 'thumbnail_id');
    
    					$overlay 	= get_woocommerce_term_meta($term->term_id, 'av-banner-overlay');
    					$font 		= get_woocommerce_term_meta($term->term_id, 'av-banner-font');
    					$opacity 	= get_woocommerce_term_meta($term->term_id, 'av-banner-overlay-opacity');
    
    					if(!empty($style))
    					{
    						remove_action( 'woocommerce_before_shop_loop', 'woocommerce_taxonomy_archive_description', 11 );
    						echo avia_woocommerce_parallax_banner_child_theme($attachment_id, $overlay, $opacity, $description, $font);
    						$avia_config['woo-banner'] = true;
    					}
    				}
    			}
    		}
    	}
    }
    
    

    Best regards,
    Ismael

    #1298685
    dcdesignhouse
    Participant

    I’ve recently installed the latest version of Enfold (4.8.2) and when going in to edit the text block on the home page it acts odd and adds a ton of code to the block. I can delete the text but when you click save it just reverts back.

    Below is piece of the code it adding:
    <p>[av_section color='main_color' custom_bg='#307ecc' src='/wp-content/uploads/2014/08/icon_bg_trans_wave.png' attachment='380' attachment_size='full' attach='scroll' position='bottom right' repeat='no-repeat' video='' video_ratio='16:9' min_heigh][/av_one_fifth][av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='47px' icon_select='yes' custom_icon_color='#1e73be' icon='ue8b4' font='entypo-fontello' custom_class=''][av_image src='/wp-content/uploads/2014/08/devices.jpg' attachment='387' attachment_size='full' align='center' animation='left-to-right' link='' target='' styling='' caption='' font_size='' appearance='' custom_class=''][/av_image]<br />[/av_section] ...

    It looks like the entire page’s content is being spat into the text block editor as shortcodes… It’s very odd and I’ve never seen this behaviour before.

    jgdoyle1
    Participant

    I’m trying to reduce the size of a copyright symbol inside a Special Heading’s subheading text. It too large. It won’t let me use a script inside the field without a warning. Is there a way of using CSS to do this globally and inside a Special Heading? The copyright symbol seems to be too large even in the body text.

    Please see example link below.

    Thank you!
    John

Viewing 30 results - 2,701 through 2,730 (of 18,729 total)