Viewing 30 results - 6,451 through 6,480 (of 18,742 total)
  • Author
    Search Results
  • #997813

    Hi,

    Thanks for the update.

    The copyright feature is only available for the image element as of this moment. If you really need to add it to other elements such as the color section, you have to do the following.

    1.) Edit the config-templatebuilder > avia-shortcodes > section.php file, remove everything and then replace it with the following code.

    // https://pastebin.com/e8anpUZS

    2.) Add these css codes to render the copyright icon.

    * image copyright */
    
    .avia-section small.avia-copyright{
      font-size: 0.8em;
      text-align: left;
      line-height: 1.7em;
    }
    /* Simple */
    
    .avia-section .avia-copyright{
      display: block;
    }
    
    .avia-section.av-has-copyright .avia-image-overlay-wrap{
      position: relative;
      overflow: hidden;
    }
    
    .av-styling-circle.avia-section.av-has-copyright .avia-section-inner{
      overflow: visible;
    }
    
    .avia-section.av-has-copyright.av-styling-circle .avia-copyright{
      text-align: center;
    }
    
    /* Icon Reveal on Hover */
    
    .avia-section.av-has-copyright.av-copyright-icon-reveal .avia-copyright{
      position: absolute;
      background-color: rgba(0,0,0,0.1);
      text-align: right;
      color: #fff;
      padding: 0 2em 0 0;
      right: 0;
      bottom: 0;
      width: 2em;
      line-height: 2em;
      max-height: 2em;
      text-indent: -99999px;
      overflow: hidden;
      transition: all 0.3s ease-in;
      z-index: 308;
    }
    
    .avia-section.av-has-copyright.av-copyright-icon-reveal .avia-copyright:hover{
      width: 100%;
      padding: 0 3em 0 1em;
      text-indent: 0;
      max-height: 100%;
      background-color: rgba(0,0,0,0.4);
    }
    
    .avia-section.av-has-copyright.av-copyright-icon-reveal .avia-copyright:after{
      content: "\E81e";
      font-family: "entypo-fontello";
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      text-indent: 0;
      font-size: 0.8em;
      width: 2.6em;
      height: 2.6em;
      line-height: 2.8em;
      text-align: center;
      color: rgba(255,255,255,0.7);
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      cursor: pointer;
    }
    
    .avia-section.av-has-copyright.av-copyright-icon-reveal .avia-copyright:hover:after{
      background-color: rgba(0,0,0,0.2);
      color: rgba(255,255,255,1);
    }
    
    .avia-section.av-styling-circle.av-has-copyright.av-copyright-icon-reveal .avia-copyright{
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      border-radius: 20px;
      background-color: rgba(0,0,0,0.15);
      text-align: right;
    }
    
    .avia-section.av-styling-circle.av-has-copyright.av-copyright-icon-reveal .avia-copyright:after{
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%;
    }
    
    .avia-section.av-styling-circle.av-has-copyright.av-copyright-icon-reveal .avia-copyright:hover{
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      border-radius: 15px;
      background-color: rgba(0,0,0,0.5);
    }
    

    3.) Edit the color section, add a background image and then enable the copyright option as you would with the image element.

    You have to do the same modification for other elements with image.

    Best regards,
    Ismael

    #997762

    Hi,

    Thanks @guenni007!

    In the latest patch, there’s a new feature allowing the lightbox to recognize query parameters so you can add the autoplay attribute without breaking the script.
    The following shortcode opens the youtube video inside a lightbox and automatically plays.

    [av_button label='Click me' link='manually,https://www.youtube.com/watch?v=2Pw5oGy34g4&autoplay=1' link_target='' size='small' position='center' label_display='' icon_select='yes' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-jkw0c11k' admin_preview_bg='']
    

    Best regards,
    Ismael

    #997755

    Hey ginnywills,

    Please try this instead:

    @media only screen and (max-width: 479px) {
    .responsive #top .slideshow_caption h2 {
      font-size: 15px !important;
    }
    }

    Best regards,
    Rikard

    #997720

    Topic: styling of CF7

    in forum Enfold
    NR1234
    Participant

    Hi Enfold team,

    In one of the sections of our webpage I have used CF7 and am trying to style it to be like the contact form (img 1) attached in terms of the look. The email and submit boxes need to be on a transparent background with a white border. The submit button needs to have a hover effect when the mouse hovers on the submit button.

    I have used the following code:

    #top.page-id-3261 #cf7-contact-form #wpcf7-f3290-p3261-o2 input[type=”submit”].wpcf7-form-control.wpcf7-submit {
    width: 30% !important;
    padding: 9px 2px!important;
    font-size: 13px !important;
    color: #ffffff !important;
    border: 3px solid #ffffff !important
    background: rgba(0,0,0,0.1) !important
    }

    #top.page-id-3261 #cf7-contact-form #wpcf7-f3290-p3261-o2 input[type=”email”].wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email {
    display: inline-block !important;
    width: 67% !important;
    padding: 9px 2px!important;
    border: 4px solid #ffffff !important
    font-size: 13px !important;
    background: rgba(0,0,0,0.1) !important
    }

    #top.page-id-3261 #cf7-contact-form #wpcf7-f3290-p3261-o2 input[type=”submit”].wpcf7-form-control.wpcf7-submit hover {
    color: #fa812f !important;
    border-color: #ffffff! important
    }

    However, I am unable to get the transparent background for both the buttons as well as the similar size as in the image attached.

    Appreciate your help.

    Thanks
    Garima

    #997616
    ginnywills
    Participant

    My caption doesn’t fit on the mobile screen. I am trying to change the font size from 20px to 15px which I think will fix it. I used this CSS code:

    @media only screen and (max-width: 479px)
    .responsive #top .slideshow_caption h2 {
    font-size: 15px !important;
    }

    But it didn’t work. Suggestions?

    Website: http://box5407.temp.domains/~theinuo4/

    Thanks!

    #997448

    Hi,

    The body or paragraph font size is set to 14px on desktop and mobile view. Is that what you want? You can use this css code to adjust the font size on mobile view.

    @media only screen and (max-width: 767px) {
    body, body .avia-tooltip {
        font-size: 13px;
    }
    }

    Best regards,
    Ismael

    #997380
    doperdoll
    Participant

    My issue is I put a lot of text in Footer Column 3 & 4 and I need to shrink the text so the overall height of 3 & 4 is the same height as 1 & 2.

    I am using a TEXT widget for Footer Column 3 and Column 4. I want to shrink the font size to 8 point and keep standard spacing (or shrink the spacing) between the lines.

    Please let me know how.

    #997131
    leonfib
    Participant

    Dear support,

    I created a mega menu with several links to pages.
    The column’s inside the mega menu look pretty good, but the links to pages underneigh it not.

    I would like to change the font size + I would like to get rid of the small arrows in front of it, how can I fix those two things?

    Thank you in advance!

    #997122

    In reply to: Add a custom font

    Hi wealthyone,

    The code given to you be Peter is basic css knowledge, it is not really theme related and very available anywhere on the Internet.

    What do you mean here?

    I came across this great Font Resizer.
    Any code I can use to put it in the Extra Elements Socket Bar ( top) of the enfold theme?

    Best regards,
    Victoria

    #997042

    In reply to: Add a custom font

    Dude
    on a side note. I came across this great Font Resizer.
    Is there any code I can use to put it in the Extra Elements Socket Bar ( top) of the enfold theme?
    Thanks

    #997013
    soniavoice
    Participant

    Hi, I have a problem with promo box in article page. If I insert inside it a contact form code it includes inside all elements until the end of the page (share buttons also).
    This is the code I used:
    [av_promobox button='no' label='Cliccami' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='large' label_display='' icon_select='no' icon='ue800' font='entypo-fontello' box_color='custom' box_custom_font='#848484' box_custom_bg='#ffffff' box_custom_border='#4ecac2' av_uid='av-2gsogh' admin_preview_bg='']
    [contact-form-7 id=”4283″ title=”Prenotazione Quad”]
    [/av_promobox]

    I have problem only with contact form line. If I insert normal text the issue disappears.
    This is the page:

    Thanks

    #996998

    WEB:https://www.yohopower.com/good-recommended/yoyo-man/selena991.html
    You can Comparison PC&Mobile font size is different。

    Thank you in advance for your help!!!

    #996948

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

    li#recent-posts-6 a {
    font-size: 12px !important;
    font-weight: bolder !important; 
    color: #5D1E15 !important;
    }

    Please adjust the font size, color, & weight to suit.

    Best regards,
    Mike

    #996868

    Topic: Transparency Menu

    in forum Enfold
    ruffidea
    Participant

    Theme Options > Header > Transparency Options > Transparency menu color

    Set to white / #ffffff
    But no change on live site

    Also changed font size to 14 in Advanced Styling but, again, no change

    Please advise, thank you

    #996825

    Hooray, thanks so much for your help, Mike – that worked great! :) It looks awesome.

    I mentioned initially in this thread that I’d also like to change the font size/style for the Recent Posts, is there some custom CSS to do that?

    Thanks again. :)

    #996713

    In reply to: Comment text font size

    Hey Sophie,

    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 .comment_content .comment_text p {
    font-size: 13px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    • This reply was modified 7 years, 8 months ago by Victoria.
    #996695

    Topic: Comment text font size

    in forum Enfold
    Sophie
    Participant

    Hi,

    I am trying to change the comment text to smaller size, but with the code

    #top .comment_text {
        font-size: 12px !important;
    }
    

    it is not working. Can you help? Please kindly find a link to a post with comments in private content box. Thank you in advance.

    Best regards,
    Sophie

    #996685

    Hi there thanks, ok so yes there is a phone number in the upper level of the header I would like to have that phone number in a larger font size in the same header box as the logo, around three quarters the height of the logo.

    Ultimately I want the number bigger and in line with logo, please

    Thanks so much

    #996632

    Hey,

    Please edit your slider – https://kriesi.at/documentation/enfold/easy-slider/, edit your slide and under “Screen Options” tab adjust font sizes – https://i.imgur.com/yvnkAze.png

    Regards,
    Yigit

    #996607

    I use this function.I found PC is changed but mobile font size still unchanging。
    why?

    #996506

    Hi Mike,

    Yeah that was it! I have never seen font size cached. Only images.
    Do you know of a WP plugin/Chrome extension that will automatically clear my cache so I don’t have to constantly manually clear my cash after every change? This is friken crazy!

    Thanks for your quick help,

    Steve

    Hi,
    Thank you for the login, I should explain that the “single small” layout with the image on the left of the article is only available when a sidebar is present, otherwise the image center aligns above the article. So for your blog page and archive (category) page a sidebar is active but hidden.
    I saw that the image you choose to use for when a post has no featured image is a transparent white icon that doesn’t show without a background color, so I added light gray to your css, which you can change or remove if you wish.
    This is the updated css in your Quick CSS:

    #top.archive .sidebar,#top.page-id-344 #main .sidebar {
    display: none !important;
    width: 0px !important;
    }
    #top.archive .sidebar_right .container .av-content-small.units,#top.page-id-344 .sidebar_right .container .av-content-small.units {
    width: 100% !important;
    }
    
    #top.archive .blog-meta a.small-preview,#top.page-id-344 .blog-meta a.small-preview {
     background: url(https://your-site.com/wp-content/uploads/2018/05/marker.png)center center no-repeat; 
    background-size: cover;
        background-color: lightgrey;
    }
    #top.archive .small-preview .iconfont,#top.page-id-344 .small-preview .iconfont {
        display: none !important;
    }

    Please clear your browser cache and check, and let us know if there are any other adjustments you would like.

    Best regards,
    Mike

    This reply has been marked as private.
    #996425

    I saw one of the other moderators use this code, so I copied and pasted it into the Appearance>Editor>themes functions file, just to see what it will do and then edit out the parts that I wanted to change but it didn’t work :(

    <span class=”phone”>[av_font_icon icon='ue854' font='entypo-fontello' size='20px'][/av_font_icon]0412 552 293</span>
    <span class=”calendar”>[av_font_icon icon='ue85b' font='entypo-fontello' size='20px'][/av_font_icon]Book Online</span>

    Details are below thanks :)

    Hi,
    To change the archive pages to the single small layout, Try adding this code to the end of your functions.php file in Appearance > Editor:

    //change category page layout to blog single small style
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-small';
    return $layout;
    }

    then we will need to add the css style to the archive pages, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function archive_single_small_layout_css() {
    	 if ( is_archive()) {
      echo '<style>
        #top .blog-meta a.small-preview {
     background: url(https://your-site.com/wp-content/uploads/2018/05/hero-blurred.jpg)center center no-repeat; 
    background-size: cover;
    }
    #top .small-preview .iconfont {
        display: none !important;
    }
      </style>';
    }
    }
    add_action('wp_footer', 'archive_single_small_layout_css');
    

    please change the url to suit.

    Best regards,
    Mike

    #996358

    Hey dnweil,
    Please try this css format:

    #top .av-main-nav span.avia-menu-text {
    font-family: sans-serif !important; 
    font-size: 16px !important; 
    font-weight: bolder !important; 
    color: red !important;
    }

    If this doesn’t help please include the url to the page in question so we can take a closer look at what rules you are trying to achieve.

    Best regards,
    Mike

    #996348

    Hey lilijabula,
    For the color section background image Please try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    .responsive #top h1.av-special-heading-tag {
    font-size: 20px !important;
    }
    .responsive #top #service {
        background-position: top 55px left !important; 
    }
    .responsive #top #wrap_all #service .container {
        width: 65% !important; 
        margin-left: 5px !important; 
    }
    }

    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    #996342

    Hey lilijabula,
    I see that the font ‘Italianno’, is loading correctly but replacing it with ‘Great Vibes’, seems to load a different font.
    I tested this on my localhost which worked correctly.

    #top .av-special-heading .av-subheading.av-subheading_below {
    font-size: 24px !important;
        font-family: 'Great Vibes', cursive !important; 
    }

    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    #996327
    dnweil
    Participant

    Hello, I need to make some font adjustments to the navigation in my developing site. The “Advanced Styling” controls for “Main Menu Links” are too limited. I am unable to affect the weight of the font or the font family. I’m not even certain that the font size is doing anything. I’ve tried different custom CSS to this and those attempts have failed.

    What custom css do you recommend to get the theme to affect style changes in the navigation main menu links?

    Hey OhYa1337,
    I took a look at your page and changed the sidebar settings to show a sidebar, for the small single author layout the sidebar must be enabled to show the image to the left of the post.
    I also see that you added some custom css to make the images 280px square, but there was an error in the code that I corrected, so it is now working.
    To remove the pencil icon and gray background color from the posts with no featured image, you could add this css to your Quick CSS:

    #top.page-id-344 .small-preview .iconfont {
        display: none !important;
    }
    #top.page-id-344 .main_color a.small-preview {
        background: transparent !important;
    }

    If you would like to have a background image for the posts that have no featured image, try this css:

    #top.page-id-344 .blog-meta a.small-preview {
     background: url(https://your-site.com/wp-content/uploads/2018/05/hero-blurred.jpg)center center no-repeat; 
    background-size: cover;
    }
    #top.page-id-344 .small-preview .iconfont {
        display: none !important;
    }

    just replace the image url with one you would like to use, or replace “your-site.com” with your domain to test with.

    Best regards,
    Mike

Viewing 30 results - 6,451 through 6,480 (of 18,742 total)