Viewing 30 results - 3,181 through 3,210 (of 18,731 total)
  • Author
    Search Results
  • webWahine
    Participant

    Hello

    I have a transparent 45 px high header on my home page. I set the background to:

    #header.av_header_transparency {
        opacity: 0.7;
        background: #000;
    	/* background: transparent; */
    }

    The problem is that the main menu items and the logo also have the opacity applied – I want them to be opacity: 1. I tried to change the z-index and opacity of the logo but both didn’t work, so I guess I’m targeting the wrong element?

    I also want to change the color of the main menu text before scrolling, and leave it as is after scrolling:

    /* main header background after scrolling */
    
    .header_color .header_bg {
    	border-bottom: 0px solid blue;
            opacity: 1;
    	background: #fff !important;
    
    /* main menu text - this also applies to the mobile menu */
    
    .header_color .main_menu ul > li > a {	
    	text-decoration: none;
        font-family: 'Open Sans',sans-serif;
        font-style: normal;
        font-weight: 600 !important;
        font-size: 12px!important;
        letter-spacing: 2px !important;
        color: #555 !important;
        text-transform: uppercase;
    }
    
    .header_color .main_menu ul > li > a:hover {
    	color: #000 !important;
    	text-decoration: none;
    }
    
    /* active page */
    
    .header_color .main_menu ul:first-child > li.current-menu-item > a,
    .header_color .main_menu ul:first-child > li.current_page_item > a {
    	color: #ff0099 !important;
    }
    }

    Please advise and thank you in advance! :)

    #1263457

    Topic: Custom enfold theme

    in forum Enfold
    tinhbeng
    Participant

    Hi,

    I have a few issues that need help:

    1. I want to customize header 1 to header 2 (header with white background), where I have to configure?
    I want the option to apply to all pages. Where will I setting it?

    Header 1: http://prntscr.com/vnbckl
    Header 2: http://prntscr.com/vnbcz1

    2. How can i change the text on Footer?
    https://prnt.sc/vqyanq

    3. How to change the Navigation font size.

    Best regards,
    tb

    #1263432

    Hi Franziska,

    Thanks for the update. Please try this in Quick CSS, in order to adjust the slider font size on mobile:

    @media only screen and (max-width: 767px) {
    .home .slideshow_align_caption h2.avia-caption-title {
      font-size: 18px !important;
    }
    }

    Best regards,
    Rikard

    #1263419

    In reply to: hide layerslider

    Üyelik formunu daha güzel bir hale getirmek için aşağıdaki css kodunu buldum bu gibi kodları nereye yapıştırmam gerekiyor seni daha fazla rahatsız etmek istemiyorum :)
    Aşağıdaki css kodunun link’i https://codepen.io/icebob/pen/LEbQVY

    @import “compass/css3”;

    @import url(https://fonts.googleapis.com/css?family=Dosis:300|Lato:300,400,600,700|Roboto+Condensed:300,700|Open+Sans+Condensed:300,600|Open+Sans:400,300,600,700|Maven+Pro:400,700);

    @import url(‘https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css’);

    $textColor: White;
    $greyColor: #BBB;

    * {
    @include box-sizing(border-box);
    }

    html {
    background: black;
    }

    body {
    font-family: “Open Sans”;
    font-size: 16px;
    color: $textColor;
    font-smoothing: antialiased;
    font-weight: 600;
    }

    a {
    color: $greyColor;
    }

    .content:before {
    content: “”;
    position: fixed;
    left: 0;
    right: 0;
    top: 0; bottom: 0;
    z-index: -1;

    display: block;
    background-color: black;
    background-image: url(‘http://ultraimg.com/images/Ho6hQWs.jpg’);
    width: 100%;
    height: 100%;
    background-size: cover;

    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
    }

    .content {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    width: 540px;
    height: 540px;

    background-color: rgba(10, 10, 10, 0.5);
    margin: auto auto;
    padding: 40px;

    @include border-radius(4px);
    @include box-shadow(0 0 10px rgba(0,0,0,1));

    .title {

    text-align: center;
    font-size: 2.0rem;
    font-weight: 600;

    padding-bottom: 30px;

    } // .title

    input {
    width: 100%;
    font-size: 1.2rem;
    font-family: “Open Sans”;

    margin: 10px 0px;

    border: none;
    padding: 10px;

    @include border-radius(4px);

    } // input

    input[type=checkbox] {
    display: none;
    }

    label {
    display: inline-block;
    width: 20px;
    height: 20px;

    cursor: pointer;
    position: relative;

    margin-left: 5px;
    margin-right: 10px;
    top: 5px;

    &:before {
    content: “”;
    display: inline-block;

    width: 20px;
    height: 20px;

    @include border-radius(3px);

    position: absolute;
    left: 0;
    bottom: 1px;
    background-color: #aaa;
    @include box-shadow(inset 0px 2px 3px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8));
    }
    } // label

    input[type=checkbox]:checked + label:before {
    content: “\2713″;
    @include text-shadow(1px 1px 1px rgba(0, 0, 0, .2));
    font-size: 20px;
    color: Black;
    text-align: center;
    line-height: 20px;
    }

    span {
    font-size: 0.9rem;
    }

    button {
    width: 100%;
    font-size: 1.1rem;
    padding: 10px;
    margin: 20px 0px;

    background-color: #66A756;
    color: $textColor;
    border: none;

    @include border-radius(4px);
    }

    .social {
    width: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;

    span {
    display: inline-block;
    vertical-align: baseline;
    padding: 0 20px;

    &:before, &:after {
    content: ”;
    display: block;
    width: 500px;
    position: absolute;
    top: 0.9em;
    border-top: 1px solid $textColor;
    }

    &:before {
    right: 75%;
    }

    &:after {
    left: 75%;
    }
    }
    }

    .buttons {
    width: 100%;
    margin: 30px 0px;

    button {
    float: left;
    width: 30%;
    margin: 0px 1.5%;

    i {
    padding-right: 7px;
    }

    &.facebook {
    background-color: #4464B2;
    }

    &.twitter {
    background-color: #28A9E0;
    }

    &.google {
    background-color: #DA4735;
    }

    } // button

    &:after {
    content: “”;
    display: block;
    clear: both;
    }

    } // .buttons

    .already {
    text-align: center;
    font-size: 0.9rem;
    }

    } // .content

    #1263373
    This reply has been marked as private.

    Hi,

    Thanks for contacting us!

    Enfold theme options > Header > Header Behaviour > “Let logo and menu position adapt to browser window” option is enabled on your live site. Also staging and live sites have different header layouts.

    You could try increasing “Main Menu Links” in Enfold theme options > Advanced Styling to increase the width of menu as shown in screenshot in private content field. I set font size to 24px instead of current 18px.

    If that is not what you meant, please post a screenshot and show the changes you would like to make. You can upload your screenshots on imgur.com and post the links here :)

    Best regards,
    Yigit

    #1263266

    Hi fkm,

    That is because there is not enough space. You could try adding following code to Quick CSS which would decrease paddings on the sides and font size so buttons would be displayed side by side

    @media only screen and (max-width: 480px) {
    #top .avia-cookie-consent .avia-cookie-consent-button {
        padding-left: 13px;
        padding-right: 13px;
        font-size: 12px;
    }}

    You can display an overlay using following code

    .avia-cookie-consent-wrap[aria-hidden="false"] {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
    }

    0,0,0 is RGB value of the color and 0.5 is opacity level which you can adjust between 0-1 :)

    Best regards,
    Yigit

    #1263235
    bhairavkothari
    Participant

    Hi,

    Theme doesn’t work correctly on mobile screens. Issues
    1. LayerSlider WP: Unable to change height, content, font size for mobile devices
    We would like to set different height, content, font size for mobile devices

    2. Avia slider: This doesn’t work on mobile; Instead only set number of columns are shown in mobile devices. For eg., if we have set 5 items per slider, it shows only 5 item one after one on mobile. Similarly for blog slider it just shows first 3 blogs one after the other
    We would like to change this behavior to 1 item at a time with scroll option.

    Note: I would like to keep this ticket private. Let me know if you need anything.

    Romit

    #1263212

    Hi Rikard
    Thank you very much, I get it now and adjusted H1 & H2.
    As a consequence, I have a problem with the font size in the mobile’s slider on the home page only (it is fine on the desktop version). When I changed the H2 to 26px, the font size in the slider became too large. When I changed it again to 18px, it was just right. How come? But I need the H2 to be 26 px and the font size in the mobile’s slider 18px. What is to do? Could you advise please.
    Thanks, Franziska

    #1263178

    Hi Franziska,

    Thanks for that. I added the h1 element under Enfold->Advanced Styling and set it to 32 pixels font size, and that is working on your actual site. We don’t really know which pixel sizes you want for the rest of the headers, so maybe you could try to add them yourself in the same place? If not then let us know which sizes you want and we’ll add them for you.

    Best regards,
    Rikard

    #1263151

    In reply to: Partner Logo On Mobile

    Here is the combined list to make it easier. :-)

    1. DESKTOP AND MOBILE HEADER & FOOTER ALIGNMENT

    – The main header column got squeezed horizontally. Can you help resolve please?
    – Mobile and desktop screenshots attached that headers and footers are all over and not aligned.

    DESKTOP
    – Header Logo is overlapping the header menus (Screenshot called Squeezed Header & Footer in below link)
    – Footer also got squeezed
    – You had previously added the following CSS Code to fix the same issue. ( #top #header .flex_column { width: 100%; margin-left: 0;} although it stopped working somehow.
    – For the immediate fix, I added the following CSS Code: #top .container { width: 85%; max-width: none; }

    MOBILE:
    – The footer and related links are now also squeezed on mobile as well.
    – Could you kindly help resolve?

    2. COOKIE MESSAGE AND MODAL.

    Could you kindly help to only show the ACCEPT and LEARN Buttons on Cookie message on load?
    – The full cookie model message pops up on page load.

    COOKIE MESSAGE FONT AND BUTTONS
    – Small and inconsistent font style and size.(Screenshot called cookie)
    – Buttons do not work
    – Misaligned accept and learn more button

    3. HOME PAGE ALIGNMENT

    – I also added the home page id to the following code you added. The code that was added was affecting all pages.

    .page-id-16071 #footer { margin-top: 365px !important;}

    – I left the following two codes for the header, footer and page alignments. Not sure if it’s correct or not.

    #top #header .container {
    width: 85%;
    max-width: none;
    }
    #top #header .flex_column { max-width: 100%; margin-left: 0;}

    4. MENU HOVER & ACTIVE PAGE MANU COLORS
    The main header menu hover color has also changed to much lighter color. It only shows the #dddddd color on active page, not on menu hover.

    – Screenshot is called: Menu Hover & Active Page Hover
    – Screenshot also attached.

    Thank you in advance my friend and god bless you for all your help. :-)

    #1263104

    Hi khickman,

    Then you need to add the page is class:

    
    #top.page-id-974 .av-subheading.av-subheading_below p{
        font-size:20px!important;
        color:red!important;
    }
    

    Best regards,
    Victoria

    #1263103
    posttopost
    Participant

    First let me start by saying when I switch to any other default theme, I no longer have page errors, so this is exclusive to using the Enfold theme.

    I’m getting a few instances of errors that look related to recaptcha. For reference, I have V2 and V3 API keys in place. And am using V3 with V2 fallback.

    recaptcha__en.js:145 Unrecognized Content-Security-Policy directive ‘“upgrade-insecure-requests”’.
    (anonymous) @ recaptcha__en.js:145
    about:blank:1 Unrecognized Content-Security-Policy directive ‘“upgrade-insecure-requests”’.
    2recaptcha__en.js:50

    In addition to this, I am getting errors related to decoding and parsing fonts:

    Failed to decode downloaded font: <URL>
    (index):1 Failed to decode downloaded font: https://www.posttopost.com/wp-content/uploads/avia_fonts/type_fonts/macosx/._opensans-extrabold.ttf
    (index):1 Failed to decode downloaded font: https://www.posttopost.com/wp-content/uploads/avia_fonts/type_fonts/macosx/._opensans-extrabold.ttf
    (index):1 Failed to decode downloaded font: https://www.posttopost.com/wp-content/uploads/avia_fonts/type_fonts/macosx/._opensans-extrabold.ttf
    onloadwff.js:71 Failed to decode downloaded font: https://www.posttopost.com/wp-content/uploads/avia_fonts/type_fonts/macosx/._opensans-extrabold.ttf
    lpIsVisible @ onloadwff.js:71
    (index):1 Failed to decode downloaded font: https://www.posttopost.com/wp-content/uploads/avia_fonts/type_fonts/macosx/._opensans-extrabold.ttf
    5OTS parsing error: invalid version tag
    lazysizes.min.js?ver=1.4.6:2

    #1263092

    In reply to: Partner Logo On Mobile

    Appreciate it my friend. It worked fantastic.

    1. The main header column got squeezed horizontally. Can you help resolve please?

    DESKTOP
    – Header Logo is overlapping the header menus (Screenshot called Squeezed Header & Footer in below link)
    – Footer also got squeezed
    – You had previously added the following CSS Code to fix the same issue. ( #top #header .flex_column { width: 100%; margin-left: 0;} although it stopped working somehow.

    For the immediate fix, I added the following CSS Code: #top .container { width: 85%; max-width: none; }

    MOBILE:
    – The footer and related links are now also squeezed on mobile as well.
    – Could you kindly help resolve?

    2. Cookie Message and mode.

    Could you kindly help to only show the ACCEPT and LEARN Buttons on Cookie message on load?
    – The full cookie model message pops up on page load.

    Cookie Message fonts and buttons.
    – Small and inconsistent font style and size.(Screenshot called cookie)
    – Buttons do not work
    – Misaligned accept and learn more button

    Thanks you, kindest regards and hope you’re keeping safe.

    #1263027
    This reply has been marked as private.
    #1263019

    In reply to: Display issues

    Hi,

    1- You set your heading size to 36px which was too big for mobile. I edited your element and set it to 32px on mobile in Styling > Font Sizes

    Logo is not aligned because you have following custom CSS code

    .logo img {
        padding-top: 25px;
    }

    I added following code to bottom of Quick CSS

    @media only screen and (max-width: 480px) {
    .logo img {
        padding-top: 5px;
    }}

    2- Image are blurry because you are uploading images in medium size. I edited first and last images and uploaded them in full size.
    To change the order on mobile, please duplicate your element, change the order of text and image as needed for mobile and choose to display it only on mobile under Advanced > Responsive tab and hide your existing element on mobile.

    Best regards,
    Yigit

    #1262970
    This reply has been marked as private.
    #1262931

    Hi Franziska,

    You can set the font size for the individual tags in the same place, the option you are referring to is general for all headers. Please try that out to see if you have any luck with it.

    If you need further help then please post admin WordPress login details in private, and let us know what is not working for you.

    Best regards,
    Rikard

    #1262915

    Hey Keith,

    Add this to quick css and adjust to what you need:

    .av-subheading.av-subheading_below p{
    font-size:20px!important;
    color:red!important;
    }

    Best regards,
    Jordan Shannon

    #1262914

    Hey mbesh,

    Add this to quick css:

    h3.slide-entry-title.entry-title a{
    font-size:30px!important;
    }

    Adjust the size to what you need.

    Best regards,
    Jordan Shannon

    #1262889

    In reply to: Mobile cart fix

    Hey El,

    Thank you for the inquiry.

    Did you set the quantity buttons to not display on smaller screens? We found this css code in the site.

    .cart_item .plus, .cart_item .minus {
    	display: none !important;
    }

    If you’d like, we could also adjust the minimum width of the product quantity column and decrease the size of the input fields so that they fit exactly inside the container.

    Please try this css code in the Quick CSS field.

    td.product-quantity {
    	min-width: 120px;
    }
    
    #top div .quantity input.plus, #top div .quantity input.minus {
    	line-height: 29px;
    	width: 30px;
    	height: 30px;
    }
    
    td {
    	font-size: 12px;
    }
    
    #top div .quantity input.qty {
    	height: 30px;
    	width: 30px;
    	line-height: 29px;
    }
    
    

    Best regards,
    Ismael

    #1262885

    Hey BelIblis,

    Thank you for the inquiry.

    Looks like you have managed to adjust the font size of the slideshow caption heading to 10px and the content to 12px using the following css code.

    .slideshow_caption p {
    	hyphens: none !important;
    	width: 70vw;
    	font-size: 12px !important;
    	line-height: 110% !important;
    }
    
    .responsive #top #wrap_all .av-mini-font-size-10 {
    	font-size: 10px !important;
    }
    

    Have you tried using the Full Screen Slider element instead of the current one? This slider will have more space for the caption and other content in general.

    Best regards,
    Ismael

    #1262881

    Hey rvga,

    Thank you for the inquiry.

    We could change the markup of the privacy & cookie modal popup window, but we have to manually edit the enfold\includes\helper-privacy.php file and adjust this code around line 1868:

    $sc_content .= "[av_heading tag='h3' padding='10' heading='{$heading}' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='10px,0,0,0'][/av_heading]";
    

    Change the tag value from h3 to something else.

    Best regards,
    Ismael

    #1262861

    Hi ivancg,

    It should be something like this:

    
    /* CSS – Tab font slyles */
    #top.pade-id-xxx .av-inner-tab-title {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .5em;
    line-height: 24px;
    }
    
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1262788

    Sorry to re-open this.

    While it worked, now it is no longer working: font in menu header is no longer Lato. Could you pleas check again? Would there be any other custom CSS that interferes with the suggested CSS?

    This is all the CSS I have right now:

    h1, h2, h3 { text-transform: none !important; }
    h2 { font-style: italic !important; }
    h6 { text-shadow: 10px 10px 40px rgba(151,142,122,1); }
    .title_container { display: none; }
    .avia-button { font-size: 20px !important; }
    #top .avia-builder-el-6 .avia-button-fullwidth { border: 1px solid #ab8e66; }
    “time.slide-meta-time { display: none!important; }
    .avia-content-slider-inner { height: auto!important; }”
    “.mega_menu_title.heading-color.av-special-font{
    font-family: Lato!important;
    }”

    .news-time { display: none; }

    #1262787

    Thank you. A little follow up is needed unfortunately.

    It now clearly works at the page I shared above: http://staging.lysandro.nl/test-team-kriesi/
    It shows exactly what I need (button 2).

    However I now implemented this on the home page, and there it is not showing up the way it should (the middle button), see here:

    http://staging.lysandro.nl/#afspraak
    The middle button still does not show the border.

    Thank you again for checking!

    PS: there is not much custom CSS on the site, just in case you need it, here is all the CSS I have active currently:
    h1, h2, h3 { text-transform: none !important; }
    h2 { font-style: italic !important; }
    h6 { text-shadow: 10px 10px 40px rgba(151,142,122,1); }
    .title_container { display: none; }
    .avia-button { font-size: 20px !important; }
    #top .avia-builder-el-6 .avia-button-fullwidth { border: 1px solid #ab8e66; }
    “time.slide-meta-time { display: none!important; }
    .avia-content-slider-inner { height: auto!important; }”
    “.mega_menu_title.heading-color.av-special-font{
    font-family: Lato!important;
    }”
    .news-time { display: none; }

    • This reply was modified 5 years, 4 months ago by emielvanwegen. Reason: It looked to work, but then it was not working on all pages
    #1262758
    khickman
    Participant

    Hi support,
    A customer wants to have a subheading line that is larger in font size and is colored.
    Please see link below.

    Fees & Policies – All Clients
    Including a List of Available Services (need to adjust font size here and color)

    #1262637

    Rikard,

    I changed that to an H1 as we discussed. I wanted to include a screen shot I took from Bing. It tells me I have two instances of having an H1 on the home page of NaturalStressManagement.com So I’m getting conflicting data. You spotted how I was missing the H1 but Bing says (see screenshot) I have an issue.

    Can you tell me how to proceed?

    Didn’t know how to get you a screen shot but here is the Bing/Home page data below I cut pasted

    –></head><body id=”top” class=”home page-template-default page page-id-5477 rtl_columns stretched lato theme-enfold woocommerce-no-js avia-woocommerce-30″ itemscope=”itemscope” itemtype=”https://schema.org/WebPage&#8221; ><div class=’av-siteloader-wrap av-transition-enabled av-transition-with-logo’><div class=’av-siteloader-inner’><div class=’av-siteloader-cell’>Loading<div class=’av-siteloader’><div class=’av-siteloader-extra’></div></div></div></div></div><div id=’wrap_all’><header id=’header’ class=’all_colors header_color dark_bg_color av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_sticky_disabled av_header_shrinking_disabled av_header_stretch_disabled av_mobile_menu_phone av_header_searchicon_disabled av_header_unstick_top av_minimal_header av_bottom_nav_disabled av_alternate_logo_active av_header_border_disabled’ role=”banner” itemscope=”itemscope” itemtype=”https://schema.org/WPHeader&#8221; ><div id=’header_meta’ class=’container_wrap container_wrap_meta av_icon_active_left av_extra_header_active av_secondary_right av_phone_active_right av_entry_id_5477′><div class=’container’><ul class=’noLightbox social_bookmarks icon_count_6′><li class=’social_bookmarks_twitter av-social-link-twitter social_icon_1′><span class=’avia_hidden_link_text’>Twitter</span><li class=’social_bookmarks_facebook av-social-link-facebook social_icon_2′><span class=’avia_hidden_link_text’>Facebook</span><li class=’social_bookmarks_linkedin av-social-link-linkedin social_icon_3′><span class=’avia_hidden_link_text’>LinkedIn</span><li class=’social_bookmarks_pinterest av-social-link-pinterest social_icon_4′><span class=’avia_hidden_link_text’>Pinterest</span><li class=’social_bookmarks_youtube av-social-link-youtube social_icon_5′><span class=’avia_hidden_link_text’>Youtube</span><li class=’social_bookmarks_instagram av-social-link-instagram social_icon_6′><span class=’avia_hidden_link_text’>Instagram</span><div class=’phone-info ‘><span><h3>Call Mateja 561 299 1028</h3></span></div></div></div><div id=’header_main’ class=’container_wrap container_wrap_logo’><ul class = ‘menu-item cart_dropdown ‘ data-success=’was added to the cart’><li class=’cart_dropdown_first’><span aria-hidden=’true’ data-av_icon=’’ data-av_iconfont=’entypo-fontello’></span><span class=’av-cart-counter ‘>0</span><span class=’avia_hidden_link_text’>Shopping Cart</span><!–<span class=’cart_subtotal’><span class=”woocommerce-Price-amount amount”><bdi><span class=”woocommerce-Price-currencySymbol”>$</span>0.00</bdi></span></span>–><div class=’dropdown_widget dropdown_widget_cart’><div class=’avia-arrow’></div><div class=”widget_shopping_cart_content”></div></div><div class=’container av-logo-container’><div class=’inner-container’><span class=’logo’>HOLISTIC COACHING INTERNATIONAL</span><nav class=’main_menu’ data-selectname=’Select a page’ role=”navigation” itemscope=”itemscope” itemtype=”https://schema.org/SiteNavigationElement&#8221; ><div class=”avia-menu av-main-nav-wrap”><ul id=”avia-menu” class=”menu av-main-nav”><li id=”menu-item-255″ class=”menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children av-menu-button av-menu-button-colored menu-item-top-level menu-item-top-level-1″><span class=”avia-bullet”></span><span class=”avia-menu-text”>About Mateja</span><span class=”avia-menu-fx”><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></span><ul class=”sub-menu”><li id=”menu-item-54″ class=”menu-item menu-item-type-post_type menu-item-object-page”><span class=”avia-bullet”></span><span class=”avia-menu-text”>Why Mateja Petje</span><li id=”menu-item-246″ class=”menu-item menu-item-type-post_type menu-item-object-page”><span class=”avia-bullet”></span><span class=”avia-menu-text”>Mateja Petje Background</span><li id=”menu-item-244″ class=”menu-item menu-item-type-post_type menu-item-object-page”><span class=”avia-bullet”></span><span class=”avia-menu-text”>Philosophy & Approach</span><li id=”menu-item-57″ class=”menu-item menu-item-type-post_type menu-item-object-page”><span class=”avia-bullet”></span><span class=”avia-menu-text”>Mateja Petje Media Interviews</span><li id=”menu-item-52″ class=”menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children av-menu-button av-menu-button-colored menu-item-top-level menu-item-top-level-2″><span class=”avia-bullet”></span><span class=”avia-menu-text”>Services</span><span class=”avia-menu-fx”><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></span><ul class=”sub-menu”><li id=”menu-item-240″ class=”menu-item menu-item-type-post_type menu-item-object-page”><span class=”avia-bullet”></span><span class=”avia-menu-text”>Holistic Psychotherapy Mateja Petje</span><li id=”menu-item-241″ class=”menu-item menu-item-type-post_type menu-item-object-page”><span class=”avia-bullet”></span><span class=”avia-menu-text”>Stress Management Coaching</span><li id=”menu-item-3155″ class=”menu-item menu-item-type-post_type menu-item-object-page”><span class=”avia-bullet”></span><span class=”avia-menu-text”>Mateja Petje Coaching Packages</span><li id=”menu-item-56″ class=”menu-item menu-item-type-post_type menu-item-object-page”><span class=”avia-bullet”></span><span class=”avia-menu-text”>Energy Healing-Spiritual Counseling</span><li id=”menu-item-237″ class=”menu-item menu-item-type-post_type menu-item-object-page av-menu-button av-menu-button-colored menu-item-top-level menu-item-top-level-3″><span class=”avia-bullet”></span><span class=”avia-menu-text”>Testimonials</span><span class=”avia-menu-fx”><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></span><li id=”menu-item-236″ class=”menu-item menu-item-type-post_type menu-item-object-page av-menu-button av-menu-button-colored menu-item-top-level menu-item-top-level-4″><span class=”avia-bullet”></span><span class=”avia-menu-text”>Mateja Petje Client Resources</span><span class=”avia-menu-fx”><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></span><li id=”menu-item-39″ class=”menu-item menu-item-type-post_type menu-item-object-page av-menu-button av-menu-button-colored menu-item-top-level menu-item-top-level-5″><span class=”avia-bullet”></span><span class=”avia-menu-text”>Blog</span><span class=”avia-menu-fx”><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></span><li id=”menu-item-55″ class=”menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children av-menu-button av-menu-button-colored menu-item-top-level menu-item-top-level-6″><span class=”avia-bullet”></span><span class=”avia-menu-text”>Contact Mateja Petje</span><span class=”avia-menu-fx”><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></span><ul class=”sub-menu”><li id=”menu-item-301″ class=”menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy”><span class=”avia-bullet”></span><span class=”avia-menu-text”>Opt In for Free Videos-Privacy Policy</span><li class=”av-burger-menu-main menu-item-avia-special “> <span class=”av-hamburger av-hamburger–spin av-js-hamburger”> <span class=”av-hamburger-box”> <span class=”av-hamburger-inner”></span> Menu </span> </span> <span class=”avia_hidden_link_text”>Menu</span> </div></nav></div></div> <!– end container_wrap–></div><div class=’header_bg’></div> <!– end header –></header><div id=’main’ class=’all_colors’ data-scroll-offset=’0′><div class=’stretch_full container_wrap alternate_color light_bg_color title_container’><div class=’container’><h1 class=’main-title entry-title ‘>Home</h1><div class=”breadcrumb breadcrumbs avia-breadcrumbs”><div class=”breadcrumb-trail” ><span class=”trail-before”><span class=”breadcrumb-title”>You are here:</span></span> <span class=”trail-end”>Home</span></div></div></div></div><div class=’main_color container_wrap_first container_wrap fullsize’ style=’ ‘ ><div class=’container’ ><main role=”main” itemprop=”mainContentOfPage” class=’template-page content av-content-full alpha units’><div class=’post-entry post-entry-type-page post-entry-5477′><div class=’entry-content-wrapper clearfix’><div class=”flex_column av_one_half flex_column_div av-zero-column-padding first avia-builder-el-0 el_before_av_one_half avia-builder-el-first ” style=’border-radius:0px; ‘><section class=”av_textblock_section ” itemscope=”itemscope” itemtype=”https://schema.org/Creati

    #1262627
    ivancg
    Participant

    Hello,

    1) I found a code to style tab section. But please tell me how to do that just for one specific page

    /* CSS – Tab font slyles */
    .av-inner-tab-title {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .5em;
    line-height: 24px;
    }

    2) I found a code to style notification element. But please tell me how to do that just for one specific page

    div .avia_message_box .avia_message_box_title { font-size: 15px; }
    .avia_message_box_content {
    font-size: 18px;
    text-transform: none;
    margin: 15px -10px -20px !important;
    }

    Thanks in advance

    #1262502

    Hey rvga,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top .main_color .avia-color-theme-color.avia-size-small {
        font-size: 10px;
    }
    

    https://share.getcloudapp.com/BluQgOAj but you have this css that tells that button to have a font-size of 40px. You need to change that.

    If you need further assistance please let us know.
    Best regards,
    Victoria

Viewing 30 results - 3,181 through 3,210 (of 18,731 total)