Viewing 30 results - 5,821 through 5,850 (of 18,738 total)
  • Author
    Search Results
  • #1041887

    I have deactivated active caching, ensured file compression is off, and activated deleted the old CSS/JS files, however adjusting any of the Main Menu Links options still won’t update any changes. I have tried on numerous browsers, including some that have never visited that page before but all menu items are still showing as white. Is there somewhere else I can look that would be causing this?

    The following pieces od code are currently active in the quick CSS section. Would any of these be forcing the colour change?

    .phone-info{
    font-size: 13px}
    
    #top .cart_dropdown { display: none; }
    
    .avia_textblock.awesome-textblock {
    background: rgba(255,255,255,.8);
    padding: 10px;
    width: auto;
    }
    
    .av-menu-button-colored {
    background: F28163;
    }
    
    .main_menu ul:first-child > li > a { font-size: 16px; }
    
    .single-portfolio .attachment-entry_with_sidebar.wp-post-image {
    display: none;
    }
    #1041685

    In reply to: Tiny Font in Tables

    Hi mooshonov,

    Try using this, let us know if this helps.

    .avia-button,
    .single_add_to_cart_button,
    .woocommerce-page .button {
        font-size: 18px !important;
    }
    
    #sub_menu1 {
        z-index: 301;
    }
    
    .avia_pricing_minimal td,
    .avia_pricing_minimal th {
        font-size: 20px;
    }
      
    #scroll-top-link {
        right: auto !important;
        left: 50px!important;
    }
    
    #top div .product_on_sale .inner_product_header {
        padding-left: 47px !important;
        padding-right: 15px !important;
    }
      
    #top #main .single-product-main-image .onsale {
        right: auto;
    }
      
    .av_header_transparency #header_main .main_menu ul:first-child > li > a {
        color: #fff;
    }
      
    .page-id-8105 .entry-content-wrapper select option {
        background-color: black;
    }
    
    span.minitext {
        display: none !important;
    }
        
    #top .price span {
        font-size:26px !important;
    }
    
    .woocommerce td {
        font-size: 16px;
    }
    
    h2.woocommerce-loop-product__title {
        font-size:22px !important;
    }
      
    @media only screen and (max-width: 767px) {
        .responsive #top .logo{
            width: 100% !important;
        }
      
        .responsive #top .logo a {
            float: left;
            padding-right: 100px;
            padding-top: 0;
        }
    }
      
    @media only screen and (min-width: 480px) and (max-width: 990px) {
        #top .no_margin.av_two_fifth {
            padding: 20px 30px !important; 
        }
    }
    
    @media only screen and (max-width: 479px) {
        #top .no_margin.av_two_fifth,
        #top .no_margin.av_three_fifth {
            width: 100%;
        }
    
        #top .no_margin.av_two_fifth {
            padding: 30px !important;
        }
    
        .flex_cell {
            display: block;
        }
    }

    Best regards,
    Nikko

    CharlieTh
    Participant

    Playing on localhost with template for blank no header.

    I want 3 columns to “fake” a header because I won’t need menu. I would like this “fake header” to always be at top of the page and always be horizontal. (i.e., I don’t want any of the columns to drop below each other. Don’t want stacking, want them to stay side by side.

    I have a color section with 3 columns. I don’t want them to be responsive.
    Any ideas how I might achieve this?
    Thanks in advance!

    Have used vw for font size. Will I likely need media queries for font size to allow for this 100% across top horizontal look?
    Any suggestions would be appreciated.

    #1041290

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    @media only screen and (max-width: 767px) {
    .html_elegant-blog #top.search.search-results .post-entry .post-title {
        font-size: 14px;
    }}
    
    

    Best regards,
    Yigit

    I have now tried a few other methods with no results (I have cleared caches and history). Currently, I have put this in the Quick CSS section (further down this message I show what I have tried in functions.php per what the page in my last reply said–though I’ve tried all of this in Quick CSS too):
    /* CSS – Subtext on right */

    #top .logo,
    #top .logo a {
    overflow: visible;
    }

    /* Subtext styling */
    .logo .subtext h1 {
    font-size: 20px;
    font-weight: 600;
    }

    .logo .subtext {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(120%, -50%);
    z-index: 999;
    }

    THIS is what is currently in functions.php per https://kriesi.at/documentation/enfold/logo/#toggle-id-1 — but as I said, I also tried putting this in quick css. . . I have also tried this alone in both places, and the css code alone in Quick CSS) :

    add_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);
    function kriesi_logo_addition($sub) {
    $sub .= ‘<h1>Gate Healing, PLLC</h1>’;
    return $sub;
    }

    #1040958

    In reply to: Create two main menus

    Ok Victoria,

    I’m getting there….with a lot of struggles. Any other suggestions? Like, hide logo and main menu, then create page with 3-column table and use that as header?

    If the widget approach is best, few questions please:
    1) How do I get the right side “GiftTalk.org” to top align with the left?
    2) Need to drop the “&” symbol in between. The logo currently lands there. Suggestions. Can the logo be hidden or replaced with the example sites approach?

    .header-site.header-boagworld:before {
    font-family: sosaregular;
    content: ‘&’;
    font-size: 2em;
    width: 1em;
    position: absolute;
    left: 50%;
    margin-left: -.5em;
    top: 1.45em;
    color: #fff;
    }

    Thanks!

    #1040939

    In reply to: Tiny Font in Tables

    Hi mooshonov,

    Make sure to properly indent your css code, this way it’s easier to read and debug if there are issues.
    then you can group the code if it has similar properties, for example this code:

    .avia_pricing_minimal td {
        font-size: 20px;
    }
    
    .avia_pricing_minimal th {
        font-size: 20px;
    }

    can be written as:

    .avia_pricing_minimal td,
    .avia_pricing_minimal th {
        font-size: 20px;
    }

    then you can merge the media queries for example there are multiple:

    @media only screen and (max-width: 479px) {
        //some css code here
    }

    you can have just one of that and just insert the content.

    It would also be good to have your media queries at the bottom.

    Best regards,
    Nikko

    #1040935

    In reply to: Tiny Font in Tables

    This reply has been marked as private.
    gatehealing
    Participant

    When I try to save the following code, I get an error stating:
    “error: Parse Error: Syntax error, unexpected ‘}’, expecting EOF on line 68”

    Here’s the code I have pasted (line 68 is the first close bracket ‘}’ . . . just just after “overflow: visible; in the #top .logo a { ” section:

    /* CSS – Subtext on right */

    #top .logo,
    #top .logo a {
    overflow: visible;
    }

    /* Subtext styling */
    .logo .subtext h1 {
    font-size: 20px;
    font-weight: 600;
    }

    .logo .subtext {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(120%, -50%);
    z-index: 999;
    }

    I’ve made sure I wasn’t missing anything, and the brackets seem to be correct.

    #1040862

    In reply to: Tiny Font in Tables

    Hi mooshonov,

    Try adding this code as well:

    .avia_pricing_minimal th {
        font-size: 15px;
    }

    then adjust the font size value.

    Best regards,
    Nikko

    #1040665

    Topic: not working menuq

    in forum Enfold
    yampieters
    Participant

    hello,
    1.unless the fact i ve set in bacic options NOT to show the sublevel links, they are shown anyway

    2. above the menu there is this word ‘ Home’ . how to get rid of this?

    ———————————————–
    the first option is saved, the second one as well.
    getting the menu-items in a smaller font ive used:
    .avia-menu-text {
    font-size: 12px !important;
    }

    • This topic was modified 7 years, 4 months ago by yampieters.
    #1040566

    In reply to: Tiny Font in Tables

    Hey mooshonov,

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

    .avia_pricing_minimal td {
        font-size: 15px;
    }

    Best regards,
    Rikard

    #1040393

    Hi Rikard,

    I found out that one custom CSS in a different area (added by one person involved in this site) was overriding the default font size parameters. All good and solved now. Thank you

    #1040358
    Dataplus_gmbh
    Participant

    Hi Kriesi-Team.

    My requst depends on the need to decrease the H1,H2,H3 font sizes.

    Unfortunately, changing the heading size for example with the following codes (mentioned in other enfold-threads) is not working for me:
    h1 { font-size: 40px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }

    For example also not working:
    h2 {
    font-size: 34px !important;
    line-height: 1.1em !important;
    margin-bottom: 14px !important;
    }

    Please see login-credentials in the private content + a link to the site with the mentioned heading.

    Thanks a lot and greetings,
    Manuel

    #1040148

    Hey Avery,

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

    span.mega_menu_title {
      font-size:20px;
    }

    Best regards,
    Rikard

    #1040018
    So Evolve
    Participant

    Could you please point us to the location where we can adjust the font sizing for the above.

    <span class=”mega_menu_title heading-color av-special-font”>COLORADO – cont’d</span>

    Thanks for helping

    Avery

    #1039511

    Hi,

    Thanks for the update, though it’s not all that easy for us either even though we know most classes and IDs in the theme. They still have to be found and added. If you want to target and make headers smaller on mobile screens then you can try this CSS:

    @media only screen and (max-width: 479px) {
    h1, h2, h3, h4, h5, h6 {
      font-size:70% !important;
    }
    }

    Best regards,
    Rikard

    #1039235

    Hi,
    CSS can’t assign tags, but it can match the font size to your h3 tags. To give it a H3 you could use jQuery, but if this is for SEO I don’t believe that Google will see the h3 because the bot doesn’t allow jQuery when it loads a page.
    If you would like help with the css or jQuery, please link to the page in question so we can examine the structure.

    Best regards,
    Mike

    #1039174

    Hi,

    Please add the following CSS rule:

    #top #header_main > .container .main_menu .av-main-nav > li > a:hover {
    font-size: 12px;
    }

    Let us know if it does work.

    Best regards,
    Basilis

    #1039018
    steviger
    Participant

    Hi,

    Been trying for quite a while now but I can’t figure out how to increase the width of the search submit button.
    What I would like to achieve is a search box as shown here

    For that I used the searchbox from the content elements section. No label text but with icon display. I tried this CCS:

    #top #searchsubmit {background:#001770!important; padding:0 10px!important; width:100%!important;}
    input#s[placeholder] {padding-left:12px!important; font-size: 18px;font-weight:300; height:36px; color:#a9a8a8;}

    But no luck so far…

    Best regards,

    Steven

    #1038971

    In reply to: Icon Grid : Flip

    hey there,

    the icon gris has a few problems more :-)

    in the text-field the list-text does not work correctly either. with your css and my css i could help myself. thank you :-)

    but will there be a solution in the next update?

    btw: my css for the icon grid in my custom css:

    .av_icongrid_title {
    font-size: 30px !important;
    }

    .avia-icongrid li .avia-icongrid-content {
    padding: 10px !important;
    }

    .avia-icongrid-flipback .avia-icongrid-inner li{
    width: auto !important;
    }

    .avia-icongrid-flipback ul,
    .avia-icongrid-inner li{
    display: list-item !important;

    }

    .avia-icongrid li {
    list-style: initial !important;
    }

    .avia-icongrid-flipbox li .avia-icongrid-flipback {
    opacity: 0;
    visibility: hidden;
    }
    .avia-icongrid-flipbox li:hover .avia-icongrid-front,
    .avia-icongrid-flipbox li.av-flip .avia-icongrid-front{
    opacity: 0;
    visibility: hidden;
    }
    .avia-icongrid-flipbox li:hover .avia-icongrid-flipback,
    .avia-icongrid-flipbox li.av-flip .avia-icongrid-flipback{
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 1;
    visibility: visible;
    }

    #1038948
    sitesme
    Participant

    Hi

    When I go to General Styling > Fonts tab the value that I set under the “Default content font size” doesn’t have any effect.
    I can set it to 10 or 24 and the font remains always the same.

    In the editor, I have set the size to “default” but it doesn’t budge…

    Any idea what could be?

    Under the General Styling I can see “Default theme size 13”: https://dns.d.pr/YVqTkj – where do I change this 13px?

    Thank you

    #1038878

    Hello Victoria,

    Thank you for your help, it is much needed and appreciated!

    What works: When the webpage is at larger desktop resolution and smaller mobile resolution, the logo size and padding looks great.

    What doesn’t work:
    1. At the medium in-between resolutions for tablets and larger devices, the logo becomes big with not enough padding.
    2. The logo also jumps to the left with all the menu items appearing on the right changing its intended behaviour.
    3. The logo appears not to be in the center of the page and the padding is larger on the left of the logo, creating more space between the logo and the first three menu items when centralised.

    Here is the screenshot showing examples of what I mean https://i.postimg.cc/D0cTk1DY/Logo-Resize-Padding.pnghttps://i.postimg.cc/D0cTk1DY/Logo-Resize-Padding.png

    I appreciate any assistance in making the logo scale down gracefully keeping its size and padding proportions, and fixing the logo centralisation and padding issue.

    Here is the code I got from another forum post to centralise the logo. The code also includes yours.

    Thank you so much!

    @media only screen and (min-width: 780px) {
    /*In the below code nth-child(x) the value of x should be half the number of total menu items*/
    #header .av-main-nav li:nth-child(3) {
    /* Adjust the width of the logo */
    margin-right:200px;
    }

    #header .main_menu {
    /*background: gold;*/
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    }

    .av-main-nav-wrap {
    left: 50%;
    transform: translateX(-50%);
    }

    #header .logo {
    left:50%;
    transform: translateX(-50%);
    z-index:999;
    }

    #header .logo img {
    top: 50%;
    transform: translateY(-50%);
    max-width: 140px;
    }
    }

    /* Header menu items */
    #header .avia-menu-text {
    font-weight: normal;
    }

    /* Centre align Copyright socket text */
    .sub_menu_socket {
    display: none;
    }
    #socket .copyright {
    text-align: center;
    width: 100%;
    }

    /* Make logo appear smaller on mobile and tablet resolutions */
    @media only screen and (min-width: 780px) {
    #header .logo {
    left: 50%;
    transform: translateX(-58%);
    z-index: 999;
    }
    }
    @media only screen and (max-width: 767px) {
    .responsive .logo img {
    width: 50%;
    }
    }

    /* Constraining image sizes in lower resolutions */
    @media only screen and (max-width: 767px) {
    .avia-image { max-width: 50% !important; }
    }

    #1038860

    Hi,

    You can use media queries to target different screen sizes, like this to target mobile screens only:

    @media only screen and (max-width: 767px) {
    .av-image-caption-overlay-center p:first-child,
    .av-image-caption-overlay-center p  {
        font-size: 14px;
    }
    }

    Best regards,
    Rikard

    #1038815

    Hey lorenzdeutsch,
    Thanks for the login, I adjusted your css to this:

    @media only screen and (max-width: 767px) {
    .responsive #top .slideshow_caption h2 {
    font-size: 30px !important;
    visibility: visible !important; 
    }}
    
    @media only screen and (max-width: 767px) {
    .avia-caption-content.av_inherit_color p {
    font-size: 40px !important;
    line-height: 40px !important;
    visibility: visible !important; 
    }}

    It is now working, Please clear your browser cache and check.

    Best regards,
    Mike

    Hey Jen,
    I tried to recreate this issue on my localhost, as you described it, where the font size for desktops is 20px and 17px for mobile.
    But this worked correctly for me. Can you please include a admin login in the private content area so we can take a closer look at the error in the wild.

    Best regards,
    Mike

    JenzDesignInc
    Participant

    Hi, I am new to this Forum and just want to say how much I enjoy the Enfold Theme – so thank you!

    I am using the Special Heading as an intro section on my home page.
    For this Screen Option in the avia layout builder:
    Font Size for very small screens (smaller than 479px - eg: Smartphone Portrait)
    I think the media query might be wrong because at a screen size of 400px – my Special Heading doesn’t size down to 17px, it keeps the original size – 36px

    Maybe a possible fix for a future update could be adding the following media query? (The .av-small-font-size-17 is the generated CSS from the screen options)

    @media only screen and (max-width: 480px) 
    .responsive #top #wrap_all .av-small-font-size-17 {
    	.	
    font-size: 17px !important;
    }

    Just passing along and thinking it might help.
    Thanks again!

    • This topic was modified 7 years, 4 months ago by JenzDesignInc.
    #1038765

    If you want this to work, this is the code you need to use.
    Then it works with css compression as well.

    .custom-class .av_font_icon a {
    background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    }

    .custom-class .av_font_icon a:before {
    display: none;
    }

    #1038763
    lorenzdeutsch
    Participant

    HI,

    so I found a older topic on my issue, that I can’t edit the fullscreen text size for mobile and found this code:

    @media only screen and (max-width: 767px) {
    h2.avia-caption-title {
    font-size: 30px !important;
    }}
    
    @media only screen and (max-width: 767px) {
    .avia-caption-content.av_inherit_color {
    font-size: 40px !important;
    }}

    so this isn’t working,, did It something wrong?

    #1038701

    Hey Aljoscha,

    Add this to quick css:

    i.milestone-char{
    font-size:50px!important;
    }

    Best regards,
    Jordan Shannon

Viewing 30 results - 5,821 through 5,850 (of 18,738 total)