Viewing 30 results - 5,881 through 5,910 (of 18,738 total)
  • Author
    Search Results
  • #1035898

    Hi,
    Thanks for the login, please see this article about phone number links for reference.
    When I look at your site I see your phone number in the “Phone Number or small info text
    ” area in not a link, I see that you added a link in the Quick CSS, but it actually needs to be in the “Phone Number or small info text
    “to work, so I used this format to make it a link:

    <a href="tel://555-555-5555">(555) 555-5555</a>

    (I assume for the UK there is no “1” county code in the number, but please check for yourself)
    It is now a link.
    To increase it’s font size I added this code in the General Styling > Quick CSS field field:

    .phone-info span,.phone-info span a {
    font-size: 20px !important;
    }

    Please adjust the number to suit & clear your browser cache.

    Best regards,
    Mike

    #1035894

    Hey Dee007,
    Assuming that this is the element that you would like to be 10px
    2018-11-20-215123
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    div.avia-testimonial-content  P {
    font-size: 10px !important;
    }

    If this doesn’t help, please include a admin login and ftp access in the private content area so we can take a closer look.

    Best regards,
    Mike

    #1035888
    Dee007
    Participant

    How can I change the font size in a testimonial?
    This didn’t work:
    .avia-testimonial-content{
    font-size:10px!important;
    }

    And this didn’t work either
    .avia-testimonial-content p {
    font-size: 33px; !important;
    }

    thanks

    #1035598

    In reply to: Consulting theme menu

    Hi,
    Thanks for the link, please try this css, the first rule is for the main menu & the second rule is for the sub-menu, should you want to adjust the font size there as well:

    .html_header_sidebar #header .av-main-nav > li > a .avia-menu-text {
        font-size: 20px !important; 
        line-height: 1.3em !important; 
    }
    .html_header_sidebar #header .av-main-nav > li > ul.sub-menu > li > a span.avia-menu-text {
        font-size: 20px !important; 
        line-height: 1.3em !important; 
    }

    Please feel free to adjust & then clear your browser cache and check.

    Best regards,
    Mike

    #1035494

    In reply to: Consulting theme menu

    Hi Mike,
    Not sure exactly what font size I’ll need in the end just yet. I was just trying to play around with it and adjust it accordingly to the best fit.
    If you apply some css… I can adjust that accordingly later. FYI, this is a multi-site just in case you’re wondering when you see the url. (attached). I provided a temporary login for you in the private section just in case.

    Oh, and I did change everything back to default but the line spacing didn’t change back to normal for some reason. Not sure if it’s the code you had me put in earlier or what?

    Thanks again for your help!

    • This reply was modified 7 years, 4 months ago by collinssafety.
    #1035463

    In reply to: Consulting theme menu

    Hi,
    What font size would you like? Please undue the font size change in the Advanced Styling and include a link to your site, so I can assist with some css.

    Best regards,
    Mike

    #1035428

    never mind I dug through the forum and found the right code
    .main_color .more-link {
    color: red !important;
    font-size: 20px;
    }
    .main_color .more-link {
    color: white !important;
    background: #66bc29 !important;
    }

    #1035377

    In reply to: Menu Styling

    Hi,

    Add this to quick css:

    .avia-menu-fx{
    font-size:9px!important;
    }

    Best regards,
    Jordan Shannon

    #1035370

    Hi,

    Apologies, add this to quick css:

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

    .slide-entry-excerpt.entry-content{

    font-size:15px!important;


    }

    Best regards,

    Jordan Shannon

    #1035351

    In reply to: Consulting theme menu

    Hi Mike,
    Thank you!! You’re a genius.
    The first option (quick css) didn’t work but the second option did. MUCH appreciated!
    Since my last posting however I noticed another issue with the settings for this menu that I hope you can help resolve.
    When I try and change the font size of the Main Menu Links through Advanced Styling… to a smaller font, it doesn’t change the font size at all… but it instead, it decreases the line spacing (as you can see by the screenshot link attached). Not sure what’s going here and there’s no way to fix that either because there’s no option to adjust the line spacing in this section. There is “Line Height” settings in the in the Main Menu sub-level Links, but nothing in the Main Menu Links. Any idea how to fix this?

    Thanks again for help!

    #1035341

    Hi Rikard

    thanks for the help
    I used your code and it just makes the whole bottom section one color, and no text is visible because it’s still green,see page below where I am using it for

    below is what I have inserted right now. the only change I made was I used the color code for the clients color scheme , when I used your code it was red with green font,

    .read-more-link {
    background-color: #66bc29;
    color: white;
    font-size:12px;
    }

    #1035312

    Hi Jordan,
    That code has changed it for the single blog at the top of the page, I would like it only to change the font size in the Blog Grid section below.
    Thanks

    #1035263

    Hi,

    Add this to quick css:

    h2.post-title.entry-title{
    font-size:20px!important;
    }
    
    .entry-content p{
    font-size:18px!important;
    }

    Best regards,
    Jordan Shannon

    #1035202
    nicolasmasson
    Participant

    hi, i try to adapt the font size for screen device, because on my page https://www.osteoadomicile.net/osteopathe-en-urgence/ the H1 font size is too big on mobile phone, i tried to change it threw the advanced editor (avia) and set new font size but it doesn’t change anything what shall i do?
    thanks

    #1035137

    Hi,

    Try adding this code at the bottom of your functions.php:

    function add_menu_text(){
    ?>
    <script>
    $( document ).ready(function() {
    	var el = $( "#avia-menu .av-burger-menu-main a" ),
    		text = '<span class="av-burger-text">Menu</span>';
    
    		el.prepend(text);
    });
    </script>
    <?php
    }
    
    add_action('wp_head', 'add_menu_text');

    Then in Quick CSS, located in the WP Dashboard, Enfold > General Styling add this css code:

    #avia-menu .av-burger-menu-main span.av-burger-text {
        font-size: 24px;
    }
    
    .html_av-overlay-side #top #header .avia-menu.av-main-nav-wrap {
        text-align: right;
    }

    Just adjust the font size as you see fit.

    Best regards,
    Nikko

    #1035062

    Hey webworm72,

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

    .read-more-link {
      background-color: red;
      color: green;
      font-size:12px;
    }

    Best regards,
    Rikard

    #1034968

    Hi,

    Yes, it will probably override the custom css modification. Do you have a test page where we can check this? You can also use additional css media queries to adjust the font size on mobile view.

    Best regards,
    Ismael

    #1034956

    Topic: Main Menu

    in forum Enfold
    J P
    Participant

    Hi,

    How can I make the drop down menu fonts the same size as the main menu font? I notice that the drop down fonts are smaller.

    Thank you for your help. Great Theme!

    Joe C

    Hey Edsbjerg,
    Please try this code in the General Styling > Quick CSS field:

    #footer ul#menu-main-menu.menu a,#footer .menu-submenu-container a {
    font-size:18px !important;
    font-weight: 400 !important; 
    }

    Please clear your browser cache and check.
    If this fails please try the same code in the WordPress > Customize > Additional CSS field

    Best regards,
    Mike

    Edsbjerg
    Participant

    Hi.
    I give up :-)
    I have this website : http://hrdigital.dk/ , where if you goto the bottom ( footer ) can see a submenu with this text “Onmodo People Success platform” and Om HR digital – and the menu items below, where the txt size is set to 18px.
    Visit any other page, and see the difference at the footer here !

    The correction on the mainpage is made manually, but I would like it to be the same in all footers on every page.

    I have tried to add this to the css : `nav.main_menu .sub-menu .avia-menu-text {
    font-size:18px !important;
    }`
    But it results in an text size in submenu at the header of the page, but not in the footer :-)

    It must be possible to change this for the footer only, ´but I can´t find the solution.

    Help would be appreciated.

    Kind regards.

    #1034926
    webworm72
    Participant

    I don’t see any place in advanced styling to modify the Read More Buttons for posts. Can you please provide the proper Quick CSS
    I would like to be able to change the back ground color, Font color and font size

    thanks !

    #1034838

    Hey Mike!
    Thank you for your reply.
    The setting is already on high portrait. I wanted it to be higher.
    Unfortunately the hover CSS did not work. I had to change it back to my code that is not working as i want it to.
    I post the result and the code once more:
    .av-masonry-entry:before {
    content: attr(title);
    background: #0D47A1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 95%;
    height: 40%;
    z-index: 500;
    text-align: center;
    line-height: 180px;
    opacity: 0;
    font-weight: bold;
    font-size: 24px;

    }

    .av-masonry-entry:hover:before {
    opacity: 1.0;
    }

    .av-masonry-entry:before{
    transition: all linear 0.2s;
    }

    Link:
    https://i.postimg.cc/tCGDQWKh/issue.jpg

    #1034815

    Hi,
    Sorry for the late reply, to have a taller masonry item please try the “High Portrait” Orientation:
    2018-11-17-201130
    to have the blue overlay fill within the masonry item try to place it within the “av-inner-masonry” link this:

    a.av-masonry-entry:hover > .av-inner-masonry:before {
    content: attr(title)!important; 
    background: #0D47A1!important;
    position: absolute!important;
    bottom: 0!important;
    left: 0!important;
    right: 0!important;
    width: 100%!important;
    height: 40%!important;
    z-index: 10!important;
    text-align: center!important;
    line-height: 180px!important;
    opacity: 1!important;
    font-weight: bold!important;
    font-size: 24px!important;
    color: #fff !important;
    transition: ease-in linear 2s!important;
    }
    

    unfortunately the title attribute is not showing with this though.
    To see the element I tried to work on, try Enabling the Avia Layout Builder Debugger and using this shortcode:

    [av_codeblock wrapper_element='' wrapper_element_attributes='' codeblock_type='' av_uid='av-jom6vm8p']
    <style>
    a.av-masonry-entry:hover > .av-inner-masonry:before {
    content: attr(title)!important; 
    background: #0D47A1!important;
    position: absolute!important;
    bottom: 0!important;
    left: 0!important;
    right: 0!important;
    width: 100%!important;
    height: 40%!important;
    z-index: 10!important;
    text-align: center!important;
    line-height: 180px!important;
    opacity: 1!important;
    font-weight: bold!important;
    font-size: 24px!important;
    color: #fff !important;
    transition: ease-in linear 2s!important;
    }
    </style>
    [/av_codeblock]
    
    [av_masonry_gallery ids='' items='4' columns='4' paginate='none' size='fixed' orientation='av-orientation-portrait-large' gap='large' overlay_fx='active' animation='active' container_links='active' id='' caption_elements='title excerpt' caption_styling='' caption_display='always' color='' custom_bg='' av-medium-columns='' av-small-columns='' av-mini-columns='' av_uid='av-jom67uwa']
    
    

    Best regards,
    Mike

    kmmackey
    Participant

    Hi,
    I want to use the site title and description instead of a logo. I have used some code for quick css and modification to the functions file in child theme that I got from this forum. There have been many postings on this. The one I am using is below. I still need a modification or perhaps use a different one entirely?? The issue is that the first line wraps on mobile and runs into the second line which is the site description. Another issue is that I would like line 2 to be centered.

    Here is my temp site – http://k8r.223.myftpupload.com/

    Changes to functions file in child theme

    //——————————-
    // function – Text Logos
    //——————————-
    add_filter(‘avf_logo_final_output’, ‘avf_text_logo_final_output’);

    function avf_text_logo_final_output($logo) {
    $link = apply_filters(‘avf_logo_link’, home_url(‘/’));
    $logotext = “Charlotte Meehan”;
    $subtext = “Playwright | Professor | Artistic Director”;
    $subtext = “<span class=’subtext’>$subtext</span>”;
    $logo = “<span class=’logo’><h1>“.$logotext.$subtext.”</h1></span>”;

    return $logo;
    }

    Changes added to quick css

    /* Text logo styling */

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

    #top .logo {
    background: transparent;
    display: flex;
    align-items: center;
    }
    #top .logo .subtext {
    font-size: 14px;
    color: #000000;
    position: absolute;
    width: 100%;
    left: 0;
    top: 25px;
    }

    Thank you

    #1034728

    In reply to: Text Logo adjustement

    Hello Victoria
    Thanks for that code. Somehow it does not work. I already put the code below in the quick css.

    *Code already in quick css*

    /* Text logo styling */
    #top .logo,
    #top .logo a {
    overflow: visible;
    }

    #top .logo {
    background: #080808;
    display: flex;
    align-items: center;
    padding: 0px;
    }
    #top .logo .subtext {
    font-size: 17px;
    font-weight: bolder;
    color: #ad8f61;
    position: absolute;
    width: 100%;
    left: 0;
    top: 25px;
    }

    1.) I like to ajdust the font size of the upper part of the text logo ( Only Text= Roger Baumann NOT Photography.com ). The text should be smaller.

    Thanks for your help
    kind regards
    Roger

    #1034691

    Hey web6s,

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

    @media only screen and (min-width: 768px) and (max-width: 1024px) {
    .home .avia-caption-title {
      font-size:22px !important;
    }
    }

    Best regards,
    Rikard

    #1034594

    Hi Jordan

    Thanks so much but one last thing, i have added the following which has worked really well;

    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='middle' color=''][/av_font_icon] <span class=”custom-header-meta”> 0xxxxxxxx </span> [av_font_icon icon='ue805' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='center' color=''][/av_font_icon] <span class=”custom-header-meta”>(Email address hidden if logged out) “> (Email address hidden if logged out) </span>

    but i would like a space between the icon and the text or number, is that possible please?

    Many Thanks

    • This reply was modified 7 years, 4 months ago by clairebaaye.
    #1034530

    Hi,

    Try this format:

    [av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon] <span class="custom-header-meta">Phone</span>
    [av_font_icon icon='ue805' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon] <span class="custom-header-meta">Email</span>

    Best regards,
    Jordan Shannon

    #1034509
    Matt
    Participant

    Please help asap! Black Friday sales on now and we need a solution fast.

    Our site (URL in private content) is using easy slider element and the title does not show on mobile (does not resize accordingly). I have tried several quick css codes from other threads but none worked.

    #1034415

    Ahh OK,

    So why wasn’t this working?

    .iconbox .iconbox_content .iconbox_content_title {
    border: medium none;
    padding: 2px 0 0 0;
    position: relative;
    margin: 0 0 16px 0;
    clear: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.45em !important
    }

    Thank you so much for your reply

Viewing 30 results - 5,881 through 5,910 (of 18,738 total)