Viewing 30 results - 2,611 through 2,640 (of 18,719 total)
  • Author
    Search Results
  • #1306327

    Hi,
    Glad to hear this helped, as for the text block under “Page Overview” I see these links are H5 and for hover I see a slight conflict which I believe is due to the Advanced Styling for the H5 element which defines a new font size and the color is blank, which tells the theme to use the inherit color, which should also be fine, but the element doesn’t have the option to define a hover color so inherit is used which is the problem.
    So we will need to add a css rule either for the font size or for the color, I recommend leaving the Advanced Styling setting as is and adding this css to your Quick CSS:

    #top #wrap_all .avia_textblock  > h5 > a:hover {
    	color: #fb6971;
    }

    After applying the css, please clear your browser cache and check.
    Please let us know if you find any other oddities.

    Best regards,
    Mike

    #1306131

    Hi,

    Thanks for the update. I activated the child theme, but I can’t see any difference in either the header or the font sizes on your front page, could you check and verify that on your end as well please?

    The image background in the Color Section looks good on my end, could you let us know what you would like to change please? If you have a screenshot highlighting your intentions, then that would help.

    Best regards,
    Rikard

    Hey Patrick,

    Thanks for contacting us!

    1- You add following code to bottom of Functions.php file of your child theme (https://kriesi.at/documentation/enfold/child-theme/)

    function av_get_site_desc() {
    	$site_description = get_bloginfo( 'description' );
    	return $site_description; 
    }
    add_shortcode( 'site_desc', 'av_get_site_desc' );

    and use [site_desc] shortcode to display it wherever you want. To display it in header area, you can refer to this post – https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area and add a widget area to your header.
    If that does not help, please post a screenshot showing the changes you would like to make. You can upload your screenshots on imgur.com and post the links here :)

    2- Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    #avia2-menu a {
        font-size: 17px;
    }
    #top .social_bookmarks li a {
        font-size: 20px;
    }
    

    Best regards,
    Yigit

    EmiGrandOuest
    Participant

    Hi,
    I wish to display the site description in the header right in the middle of the page. How can I do that?

    Second question: how can we increase the size of the secondary menu (fonts and social icons too small)?

    Thanks for your help!

    #1305790

    Hi Rikard, does not work, the color is always the same (gray not #1c3041), also instance created by you is the same as mine.
    If the “Apply only to mouse hover state” flag changes only the font size (which it shouldn’t do) not color!!

    ps: token is always active. Thanks

    #1305752

    Hi Anja,

    Please try this CSS as well to set a background for the read more button:

    .home #avia_feature_image_slider_1 a.avia-slideshow-button {
      background-color: blue;
    }

    You can add this CSS instead of the previous block I sent, if you want to change the font size of the header:

    .home #avia_feature_image_slider_1 h2.avia-caption-title {
        background: blue;
        padding: 10px;
        font-size: 28px;
    }

    All elements on your site can be seen if you select to inspect them in your browser. There is no intellectual property rights here, you can freely target them using your own CSS.

    Best regards,
    Rikard

    #1305724

    Hi jelle,

    We apologize for the delayed response.
    1. Yes, if changes that you want aren’t in the backend options.

    2. Please try adding this in Quick CSS:

    #top .groot .entry-title {
        background-color: rgba(102,102,102,0.2);
        border-radius: 10px;
        padding: 10px 20px;
        display: inline-block;
    }

    3. The transitions are defined in the js file (enfold > config-templatebuilder > avia-shortcodes > slideshow > slideshow.js, line 42):

    transitionSpeed:900,

    4. Can you try adding this CSS code:

    @media only screen and (max-width:767px) {
      #top .groot .entry-title {
        font-size: 32px;
      }
    
      #top .groot .entry-title {
        font-size: 32px;
      }
    }

    Best regards,
    Nikko

    #1305562
    This reply has been marked as private.
    #1305539

    Hi Rikard, I had already tried but it doesn’t work, it just changes font size. If you want to try it yourself, there is token in private data.
    thank you

    2021-06-14-at-07-48-00

    #1305487

    Thankyou Rikard, the code works, which is great!

    So, I went ahead and added the code for 3 more fullwidth sliders. Now I have another problem, which may/may not be related – my CSS updates won’t save. This message is displayed: “Saving didn’t work. Please reload the page and try again.”
    To try and fix this, I have done the following:
    – tried to remove my last CSS update
    – backed up my CSS then deleted all CSS
    – reloaded the page
    – logged off then logged on again

    Nothing helps! Could you please help me. My CSS is included below:
    /*change caption position on Home fullwidth slider */
    .slideshow_align_caption {
    top: -90px; left: 40;
    }
    /*change caption position on About fullwidth slider to top*/
    #top .caption_bottom .slideshow_caption {
    bottom: auto;
    top: 30px; left: 40;
    }
    /*change caption position on Board fullwidth slider*/
    #board .slideshow_align_caption {
    left: 340px;
    }
    /*change caption position on Testimonials fullwidth slider*/
    #testimonials .slideshow_align_caption {
    top: -150px;
    }
    /*change caption position on Submit fullwidth slider*/
    #submit .slideshow_align_caption {
    top: 40px;
    }
    /*set constant height for all fullwidth slider images */
    ul.avia-slideshow-inner {
    max-height: 450px;
    }
    /*set constant height for all mobile fullwidth slider images */
    @media only screen and (max-width: 768px) {
    .avia-slideshow-inner, .avia-slideshow-inner img {
    height: 420px !important;
    margin-bottom: -60px;
    }
    /*adjust width of mobile fullwidth slider images */
    .av_slideshow_full li img {
    width: 230% !important;
    max-width: 230% !important;
    margin-left: -25%;
    }}
    /*change heading case from upper to upper/lower */
    h1, h2 {
    text-transform: none !important;
    }
    /*change size of icon box title*/
    .iconbox .iconbox_content .iconbox_content_title {
    font-size: 20px;
    text-transform: none;
    }
    /*change subtitle color in testimonials*/
    .avia-testimonial-name {
    color: #fa6f3c !important;
    }
    /* reduce Team member photo size */
    .team-img-container img {width: 50%!important;
    }
    /* reduce Team member name size */
    .avia-team-member .team-member-name {
    font-size: 16px !important;
    }
    /* reduce Team member Description size*/
    .avia-team-member .team-member-description {
    font-size: 14px !important;
    }
    /* Job Title */
    .avia-team-member .team-member-job-title {
    color: #fa6f3c !important;
    }
    /* align Team member photo and name */
    .team-img-container img { float: left; }
    /*fill screen with web page*/
    .responsive .container {
    max-width: 100%;
    }

    Hi,
    Thank you for your patience and for the links, on your site I see the images are not the same size, one is landscape, one is normal 467px x 467px (middle) and the first one is 1200px x 832px, so I recommend trying to use the same image size for all of them. Then I notice that your “title” is very long due to your language, since I doubt you want to hyphenate it I recommend using a smaller font size.
    So as an example I created 6 simple team member elements with only an image and a little dummy text:
    2021-06-13_164733.jpg
    then I placed 3 in a grid row element as I described in the thread you linked to and 3 in 1/3 columns like you have on your site:
    2021-06-13_165300.jpg
    then I added this css for the box-shadow and text padding you were asking about:

    .avia-team-member {
        box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 30%);
    }
    .team-member-description {
    	padding: 0 15px 10px 15px;
    }

    and this was the result:
    2021-06-13_165657.jpg
    This seems like the result you were looking for, I like the grid row layout as it seems more full width, but the columns also have a nice boxed look. Hope this helps.

    Best regards,
    Mike

    #1305426

    Hey John,
    Thank you for your patience, and the link to your page, since you increased the font size you will also need to change this css to re-center the text:

    .av-inner-tab-title, .av-tab-section-icon, .av-tab-arrow-container, .av-tab-section-image {
        width: 130px !important;
    }

    After applying the css, please clear your browser cache and check.
    The default is 90px & I just experimented until it looked good, feel free to adjust.
    This also helps with your mobile view, but please note that the element is not meant to show all tabs at mobile, it moves along as the tabs are clicked.

    Best regards,
    Mike

    #1305406

    In reply to: mega menu

    Hello Rikard
    I added below code in quick css . Now it’s showing properly.

    #header .mega_menu_title {
    font-size: 14.5px !important;
    }
    #top #header .mega_menu_title a { font-size: 14.5px; }

    I’m getting strange issues with the website. Please check the below links , it’s all redirecting to homepage . Suddenly it stopped working . I created contact-us page first , it stopped working so created another contact page with contact & that also stopped working .
    Finally I have created a new contact page which u can find in our website .
    I need to see why below links stopped working. I even updated permalinks . checked all redirection , but no luck .
    could you please try to create below pages again ? It will redirect to homepage .

    • This reply was modified 4 years, 8 months ago by IDV.
    #1305309

    Hey,

    Thanks for contacting us!

    Please edit your Table element and give it custom ID in Advanced > Developer Settings tab (“custom-table” in example below) and then add following code to bottom of Quick CSS field

    #custom-table .avia-heading-row { background-color: #719430; font-size:19px; font-weight: bold; color: white; border-bottom: none;}
    #custom-table li { color: black; border: 1px solid black; } 
    

    Best regards,
    Yigit

    #1305145
    aussiedropbear
    Participant

    Hi,

    I have decided to go with a tab section on the home page that is split between two sections for ‘Solutions’ and ‘Services’.
    I have figured out through the forum on how to increase the font headings which has worked well.

    
    /*----------------------------------------
    // CSS -  Tab Section Font sizing
    //--------------------------------------*/
    .av-inner-tab-title {
        font-size: 19px;
    }
    

    The issue I have now is that in each of the tab sections the headings are not center aligned. Is there a css code or a setting that can make this so?

    I also notice that when viewing in mobile, say for ‘Solutions’, that the ‘security alarm monitoring’ is having its ‘g’ cut-off. It would be nice to ensure that the text here is always within the frame. I have captured an image in pc so you can view.

    Thanks
    John

    #1304930
    travwaite
    Participant

    Hi there,

    I’m trying to get the submenu text to match the main navigation. I’ve tried to piece the CSS together but can’t get it right. Here’s one of my attempts, so you can see the styling I’m trying to incorporate:

    #top #header .av-main-nav > a .avia-menu-text {
    font-family: hurme-geometric-sans-no.font-family;
    font-weight: light;
    font-size: 80%;
    letter-spacing: 0.2em;
    }

    Thanks team

    #1304856

    hello, ive managed so by using the content slider:

    the code i use now is

    .groot
    {color:#a42c6a;
    font-size:48px;
    padding:20px;
    text-shadow: 2px 2px #e1e1e1;
    font-family: Century Gothic;
    }

    but im having some questions left
    1. is the quick css the only location i can manage the layout of the sliding text?
    2. if so, how can i give this text transparant background , lets say #666666, with a transparancy of 0.2 , padding 10px, roundedcorners 10%,?
    3. where can i adjust the transaction speed?
    4. on a mobile the whole thing looks a bit strange…too big…of course i could hide it, but what about seeing the same stuff, but than much smaller, fit for a mobile?
    is this possible?

    best regards, jelle

    Hi Yigit,

    Thanks so much for replying.

    Two things I’m trying to achieve here

    1) Our custom icons to be positioned on the right side of the menu header as per below screen shot. I’ve uploaded the icons as an icon pack
    https://dev.powerof4.com.au/wp-content/uploads/2021/06/Custom-Icons-On-Main-Menu.jpg

    Icons are located here (using a custom import font pack called PO4)

    2) When the screen is resized (for tablet and mobile) we would like the main logo icon to move to the centre and the burger icon to appear on the far left as per screen shot below
    https://dev.powerof4.com.au/wp-content/uploads/2021/06/Burger-Menu-On-Left-Side.jpg

    Thanking you in advance for your help here :)

    Andrew

    Hi Tobias777G,

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

    #footer .widget  p {
        line-height: 16px;
    }
    
    nav.sub_menu_socket li a {
        font-size: 16px;
    }

    Best regards,
    Rikard

    Hi,

    Thanks for the update. Please remove the dot from the CSS class you added, it won’t work if there is a dot in the class.

    Copyright line; the default backlink won’t be added, so you can remove the shortcode, and add your custom code to the slider. If you can’t add it into the slider, then you might have to add it into a code block, and position it using CSS.

    Menu on phones; please try this in Quick CSS:

    @media only screen and (max-width: 767px) {
    div.footermenufont li {
        padding: 0px 10px !important;
    }
    
    div.footermenufont li a {
        font-size: 12px !important;
    }
    }

    Best regards,
    Rikard

    #1304557

    Hey laempe,

    The custom class is added to the parent div, so you would have to target the element using CSS like this:

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

    Please try that out.

    Best regards,
    Rikard

    #1304485

    The webpage with the archive code is this one: https://www.planetree-sv.org/newsletters/

    Note: I added a textbox with the archive below the code module.

    When I’m looking at the page preview in WP I see the code-generated archive + the text archive I made. When I log out of WP and look at the live page (I tried multiple browsers), the code-generated archive is missing.

    The code I used is the standard type of javascript embed code from MailChimp:

    <style type=”text/css”>
    <!–
    .display_archive {font-family: arial,verdana; font-size: 12px;}
    .campaign {line-height: 125%; margin: 5px;}
    //–>
    </style>
    <script language=”javascript” src=”//planetree-sv.us19.list-manage.com/generate-js/?u=bc36c103f34a88c1bea9a801b&fid=26955&show=10″ type=”text/javascript”></script>

    #1304393
    laempe
    Participant

    Hello,
    I have got one page of my website and there I want to style the H1 in other size than the H1 at the other pages.
    At text block element => style => font size
    There is the opportunity the set the fontsize for different devices.
    I have set 40px for standard device and this works for text in a <p> tag.

    But now I want to set the font size for the h1 to 30px in a further text block element. And this will not work with h1.

    I tried with custom css and this will not work, too.
    I have set a custom css class at text block element => advanced => developer => custom css class as follows:
    headline_style_home

    At Enfold quick css I have the following css code:
    /*Headline Style*/
    .headline_style_home {
    font-size: 30px !important;
    }

    But nothing will affect to the H1 headline with custom css class “headline_style_home” or with settings at text block element => style => font size.
    Why? How to solve that?

    kind regards

    #1304320

    Hi,

    Thank you for the info.

    1.) The font size on the demo and in the actual site is actually set to 12px, and the size of the images are the same but some of the images in the actual demo are not free to use, so they are replaced with other images. A few sliders are also not included because the images are subject to the same copyright issues. The container also has a maximum width of 1130px and the header is set to shrink on scroll.

    2.) Looks like the “IN CASE YOU NEED HELP” section is missing and is replaced with a slider. You can recreate the layout using 1/3 columns with icon boxes inside and use the logo/partner slider element to recreate the slider containing logo images.

    Aside from the missing images and a few missing elements or section in the home page, the demo and the actual site have the same layout, theme options and used the same templates and/or combination of elements.

    Best regards,
    Ismael

    #1303975
    EnvatoOvis
    Participant

    Hello,

    Somthing wrong with phone and google-translate… lost flags :(

    flags

    Quick CSS:

    /** meniu ilgas ***/
    .av-main-nav ul {
        width: 260px;
    }
    /* beadthumbs išjungiu pranešimą - Pradžia */
    span.trail-before {
    display: none!important;
    }
    @media only screen and (max-width: 767px) { 
    .logo.second-logo img {
        padding-top: 20px;
    }}
    @media only screen and (max-width: 480px) { 
    .responsive .logo img {
        max-width: 90%;
    }}
    @media only screen and (min-width: 768px) { 
    .logo img {
        padding: 15px 0;
    }}
    .logo:first-child {
        z-index: 4;
    }
    /*.logo, .logo a { display: inline-block}*/
    /*.logo:first-child img {display: none}*/
    /*.logo.first-logo { z-index: 3 }*/
    .logo.second-logo { z-index: 3 }
    .logo.second-logo { width: 100% }
    .logo.second-logo a { float: right !important }
    /*.logo.first-logo a, */ .logo.second-logo a { display: inline-flex }
    /*.main_menu:not(:first-of-type) { display: none !important }*/
    /*.responsive #top .logo.first-logo {
        float: left;*/
    }
    
    /*hide auto sidebar from magazine*/
    .page-id-2967 .sidebar .widget_nav_hide_child {
    display: none;
    }
    
    /*2.8 firefox problem*/
    .avia-image-container-inner, .avia_image {
        max-width: 100%;
    }
    
    #header_main .avia-menu-text {
        font-size: 16px;
    }
    .entry-content p {
    font-size: 18px;
    margin: 20px 0;
    line-height: 24px;
    }
    
    .header-scrolled #header_main > .container {
    display: none !important;
    }
    
    #socket .avia-bullet, #socket .avia-menu-fx {
      display: none;
    }
    
    h4 {
    line-height: 30px;
    }
    .comment_container {
     display: none;
    }
    #paslaugos-container-width .container {
      width: 100% !important;
      min-width: 100%;
      padding: 0;
      margin: 0;
    }
    /*#paslaugu-elementas .aviaccordion {
        max-height: 300px;
    }*/
    #top #paslaugos-container-width .aviaccordion-slide img {
        max-height: 295px;
    }
    #top #paslaugos-container-width #paslaugu-elementas {
        max-height: 295px !important;
    }
    
    #1303974

    Hello. I made all the changes suggested. i added

    body p { font-family: “Open Sans”; font-size: 15px;}

    in the personalization section. Don’t know how very well but it seems working. thank you!

    #1303850

    Hi Stephen,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    #avia3-menu li {
        font-size: 12px;
    }

    Best regards,
    Nikko

    #1303739
    #1303727

    Hi Rikard,

    We managed to fix it like this

    `@media only screen and (max-width: 1300px) {
    .responsive #top .av-menu-mobile-active {
    text-align:center
    }
    .responsive #top .av-menu-mobile-active .mobile_menu_toggle{
    display:inline-block
    }
    .responsive #top .av-menu-mobile-active .av-subnav-menu{
    display:none
    }
    .responsive #top .av-menu-mobile-active .av-subnav-menu.av-open-submenu{
    display:block
    }
    .responsive #top .av-menu-mobile-active .av-subnav-menu > li {
    display: block;
    border-top-style: solid;
    border-top-width: 1px;
    padding: 0;
    }
    .responsive #top .av-menu-mobile-active .av-subnav-menu > li:first-child {
    margin-top: -1px;
    }
    .responsive #top .av-menu-mobile-active .av-subnav-menu > li > a {
    border-left: none;
    padding: 15px 15%;
    text-align: left;
    }
    .responsive #top .av-menu-mobile-active .av-subnav-menu > li a::before {
    content: “\25BA”;
    position: absolute;
    top: 15px;
    margin-left: -10px;
    font-family: ‘entypo-fontello’;
    font-size: 7px;
    }
    .responsive #top .av-open-submenu.av-subnav-menu > li > a:hover,
    .responsive #top .av-subnav-menu .current-menu-item a:hover .avia-menu-text {
    color: #53565a;
    }
    }
    Regards

    #1303714

    In reply to: Masonry gallery

    Hey Alan,

    Thank you for the inquiry.

    You can use this css code to adjust the font size of the masonry content.

    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content *, #top .av-caption-style-overlay .av-masonry-item-with-image ins:before, #top #wrap_all .av-caption-style-overlay .av-masonry-item-with-image del {
        color: #fff;
        font-size: 1.2em;
        font-weight: 600;
    }
    

    Unfortunately, you cannot place the container below the image because it will break the layout of the masonry. What you can do is add a background overlay instead.

    #top .av-caption-style-overlay.av-hover-overlay- .av-masonry-item-with-image .av-inner-masonry-content {
        background: rgba(0,0,0,0.5);
    }
    

    If you need to only adjust the position of the text, try this css code.

    #top .av-fixed-size .av-masonry-entry.av-masonry-item-no-image .av-inner-masonry-content-pos, #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content-pos {
        vertical-align: bottom;
    }

    Best regards,
    Ismael

Viewing 30 results - 2,611 through 2,640 (of 18,719 total)