Viewing 30 results - 12,271 through 12,300 (of 18,742 total)
  • Author
    Search Results
  • #558015

    Topic: Custom accordian

    in forum Enfold
    elliotstiller
    Participant

    I am trying to add a custom accordian element to my website; can i paste the code below into the code block item?
    This is the accordian, in imgur: http://imgur.com/FwzRmMb
    Code begins:

    <main class=”mxBack”>

    <header class=”mxHeader”>
    <nav class=”control”>

      <li class=”iron active”>Iron man
      <li class=”cap”>Captain
      <li class=”bw”>Black Widow
      <li class=”thor”>Thor

    </nav>
    </header>

    <section class=”mxBody”>
    <div class=”content”>
    <div class=”inner iron active”>
    <h1>Iron man</h1>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque varius orci sed justo venenatis pellentesque. Duis eget lacus quis tortor interdum fringilla. Pellentesque non risus vel odio adipiscing posuere at ut neque. Sed vel justo vitae risus commodo tincidunt. Sed ornare felis eros.</p>
    </div>
    <div class=”inner cap”>
    <h1>Captain America</h1>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque varius orci sed justo venenatis pellentesque. Duis eget lacus quis tortor interdum fringilla. Pellentesque non risus vel odio adipiscing posuere at ut neque. Sed vel justo vitae risus commodo tincidunt. Sed ornare felis eros. Proin lobortis augue in semper aliquam. Phasellus hendrerit erat at dolor tempus laoreet. Nunc elit velit, congue at bibendum sit amet, tincidunt eget lectus. Donec venenatis, nisl at condimentum lacinia, ligula arcu commodo orci, id consequat lorem erat vitae neque.</p>
    </div>
    <div class=”inner bw”>
    <h1>Black Widow</h1>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque varius orci sed justo venenatis pellentesque. Duis eget lacus quis tortor interdum fringilla. Pellentesque non risus vel odio adipiscing posuere at ut neque. Sed vel justo vitae risus commodo tincidunt. Sed ornare felis eros. Proin lobortis augue in semper aliquam. Phasellus hendrerit erat at dolor tempus laoreet. Nunc elit velit, congue at bibendum sit amet, tincidunt eget lectus. Donec venenatis, nisl at condimentum lacinia, ligula arcu commodo orci, id consequat lorem erat vitae neque. Morbi sed lectus lobortis, fermentum urna vulputate, imperdiet lectus. Integer sagittis est nisl, non feugiat elit tincidunt in. Cras non nisi ultricies, venenatis sem at, eleifend quam. Sed arcu dolor, egestas sed mauris eu, auctor volutpat tellus.</p>
    </div>
    <div class=”inner thor”>
    <h1>Thor</h1>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque varius orci sed justo venenatis pellentesque. Duis eget lacus quis tortor interdum fringilla. Pellentesque non risus vel odio adipiscing posuere at ut neque. Sed vel justo vitae risus commodo tincidunt. Sed ornare felis eros. Proin lobortis augue in semper aliquam. Phasellus hendrerit erat at dolor tempus laoreet. Nunc elit velit, congue at bibendum sit amet, tincidunt eget lectus. Donec venenatis, nisl at condimentum lacinia, ligula arcu commodo orci, id consequat lorem erat vitae neque. Morbi sed lectus lobortis, fermentum urna vulputate, imperdiet lectus. Integer sagittis est nisl, non feugiat elit tincidunt in. Cras non nisi ultricies, venenatis sem at, eleifend quam. Sed arcu dolor, egestas sed mauris eu, auctor volutpat tellus.</p>
    <p>Proin vitae eleifend massa. Phasellus feugiat vestibulum urna, hendrerit fringilla mauris molestie non. Proin accumsan mi eget ullamcorper venenatis. Sed commodo purus orci, a eleifend ante sodales pellentesque. Cras ut dignissim neque.</p>
    </div>
    </div>
    <div class=”backgrounds”>
    <div class=”bg iron active”></div>
    <div class=”bg cap”></div>
    <div class=”bg bw”></div>
    <div class=”bg thor”></div>
    </div>
    </section>
    </main>

    .mxBack {
    color:black;
    height:100vh;
    overflow:hidden;
    }

    .mxHeader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3em;
    padding: 0.5em;
    background-color: #fff;
    z-index: 150;
    @media (min-width: 48em) {
    height: 5em;
    padding: 1em;
    }

    nav ul {
    list-style-type: none;
    text-align: right;
    li {
    display: inline-block;
    padding: 0.1em;
    font-size: 1em;
    border: 0.1em solid #000;
    margin-right: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color, background-color 0.4s;

    &:hover {
    background-color: #000;
    color: #fff;
    }
    @media (min-width: 48em) {

    font-size: 1.5em;
    padding: 0.2em;
    border: 0.2em solid #000;
    margin-right: 0.5em;

    }
    }
    li.active {
    background-color: #000;
    color: #fff;
    }
    }
    nav.in-action ul li {
    opacity: 0.4;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
    }

    .mxBody {
    height: calc(~”100% – 5em”); overflow:hidden;
    }

    .mxBody {
    position: absolute;
    top: 3em;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    @media (min-width: 48em) {

    top: 5em;

    }
    .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 2em;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.8);
    @media (min-width: 48em) {
    width: 40%;
    }
    }

    }

    .mxBody .content .inner {
    display: none;
    }
    .mxBody .content .inner.active {
    display: block;
    -webkit-animation: showTextBlock 1s;
    animation: showTextBlock 1s;
    }
    .mxBody .content .inner h1 {
    font-size: 2em;
    margin-bottom: 1em;
    text-transform: uppercase;
    font-family: decade, sans-serif;
    }
    .mxBody .content .inner p {
    font-size: 1.25em;
    margin-bottom: 0.75em;
    font-family: pt-reg, sans-serif;
    }
    .mxBody .backgrounds .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;

    transition: 1.5s;
    will-change: transform;
    z-index: 60;
    }
    .mxBody .backgrounds .bg.iron {
    background-image: url(“http://i.imgur.com/PbV1Grl.jpg&#8221;);

    transform: translateX(-100%);
    }
    .mxBody .backgrounds .bg.cap {
    background-image: url(“http://i.imgur.com/VWYl1EC.jpg&#8221;);

    transform: translateY(-100%);
    }
    .mxBody .backgrounds .bg.bw {
    background-image: url(“http://i.imgur.com/ga3BiDw.jpg&#8221;);

    transform: translateX(100%);
    }
    .mxBody .backgrounds .bg.thor {
    background-image: url(“http://i.imgur.com/jAY4044.jpg&#8221;);

    transform: translateY(100%);
    }
    .mxBody .backgrounds .bg.active {
    transform: translateZ(0);
    z-index: 70;
    }
    .mxBody .backgrounds .bg.fast {
    transition-duration: 0s;
    }

    @keyframes showTextBlock {
    0% {
    opacity: 0;
    transform: scale(0.5);
    }
    80% {
    opacity: 1;
    transform: scale(1.05);
    }
    100% {
    opacity: 1;
    transform: scale(1);
    }
    }

    $(document).ready(function() {

    var inAction = false;

    $(“.control li”).click(function() {

    if ($(this).attr(“class”) === $(“.control li.active”).attr(“class”)) {
    return;
    }

    if (!inAction) {

    var actClass = $(this).attr(“class”).replace(/\bactive\b/, “”),
    previous = $(“.bg.active”),
    bgTransDur = parseFloat(previous.css(“transition-duration”), 10) * 1000,
    trans;

    if (actClass === “iron”) {
    trans = “translateX(100%)”;
    } else if (actClass === “cap”) {
    trans = “translateY(100%)”;
    } else if (actClass === “bw”) {
    trans = “translateX(-100%)”;
    } else if (actClass === “thor”) {
    trans = “translateY(-100%)”;
    }
    inAction = true;
    console.log(bgTransDur);
    $(“.control li.active”).removeClass(“active”);
    $(this).addClass(“active”);
    $(“.control”).addClass(“in-action”);
    $(“.content .inner.active”).removeClass(“active”);
    $(“.bg.active”).removeClass(“active”);
    previous.css(“transform”, trans);

    /* hack for returning bg in original state */
    setTimeout(function() {
    previous.addClass(“fast”);
    previous.attr(“style”, “”);
    previous.css(“transform”);
    previous.removeClass(“fast”);
    }, bgTransDur);

    $(“.content .inner.” + actClass).addClass(“active”);
    $(“.bg.” + actClass).addClass(“active”);
    $(“.content”).scrollTop(0);

    setTimeout(function() {
    inAction = false;
    $(“.control”).removeClass(“in-action”);
    }, bgTransDur + 100);
    }
    });
    });

    Thank you!

    #557825

    Hello. Thanks Yigit! The dividers and icons are now gone, however the font size and line height remains unaffected. Also, it looks like the underline hover effect has been placed on the navigation hamburger icon instead of underneath the menu items. Lastly, the X to close the box does not align correctly with the menu icon, it appears in the upper right rather than directly over the hamburger.

    Sorry if I wasn’t clear enough!

    #557809

    Hi Rikard,

    Let me give you current info on my quest to debub my child style.css issue.

    This is my functions.php file:
    <?php

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */

    if(isset($avia_config[‘use_child_theme_functions_only’])) return;

    add_theme_support(‘avia_template_builder_custom_css’);

    I assume this information is correct. If not, please let me know.

    My style.css file in in my enfold-child folder.

    Here is a perfect example of my issue: This code works in the Quick CSS box
    #footer, #footer p, #footer a {
    font-size: 12px !important; }
    #footer h3 {
    font-size: 14px !important; }

    Same placed in the style.css does nothing. Any ideas on what is happening?
    Thanks,
    Ron

    #557806

    Also, I wanted to add what I believe is my old Quick CSS code for this.

    The result that it’s giving me is this:

    Current Result of CSS Code

    Here’s that code (don’t know if it’s 100% complete):

    .mc4wp-form form{margin:0!important;clear:both}
    .mc4wp-form p br{display:none}
    .mc4wp-form label{display:block;visibility:visible;position:relative;margin-bottom:7px;font-weight:600}
    .mc4wp-form p{position:relative;clear:both;float:left;width:100%}
    .mc4wp-form p.hidden{position:absolute;width:0;left:0;top:0}
    .mc4wp-form .form_element_half{width:49.5%;float:left;margin-left:1%;clear:none}
    .mc4wp-form .form_element_third{width:32.6%;float:left;margin-left:1%;clear:none}
    .mc4wp-form .form_element_two_third{width:66.4%;float:left;margin-left:1%;clear:none}
    .mc4wp-form .form_element_fourth{width:24.2%;float:left;margin-left:1%;clear:none}
    .mc4wp-form .form_element_three_fourth{width:74.8%;float:left;margin-left:1%;clear:none}
    .mc4wp-form .first_form{clear:both;margin-left:0}

    #top .mc4wp-form select{-webkit-appearance:none;border-radius:0;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAANCAYAAAC+ct6XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjBBRUQ1QTQ1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjBBRUQ1QTU1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMEFFRDVBMjVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMEFFRDVBMzVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5mU4QAAACUSURBVHjaYmRgYJD6////MwY6AyaGAQIspCieM2cOjKkIxCFA3A0TSElJoZ3FUCANxAeAWA6IOYG4iR5BjWwpCDQCcSnNgxoIVJCDFwnwA/FHWlp8EIpHSKoGgiggLkITewrEcbQO6mVAbAbE+VD+a3IsJTc7FQAxDxD7AbEzEF+jR1DDywtoCr9DbhwzDlRZDRBgACYqHJO9bkklAAAAAElFTkSuQmCC);background-position:center right;background-repeat:no-repeat;border-radius:2px}

    .mc4wp-form .button{margin:0;padding:16px 20px;border-radius:2px;border-bottom-width:1px;border-bottom-style:solid;font-weight:400;font-size:12px;min-width:142px;outline:none}
    .mc4wp-form .modified_width .button{width:100%;padding:13px 10px 14px;min-width:0}
    .mc4wp-form p input,.mc4wp-form p textarea,.mc4wp-form p select{-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s ease-in-out}

    @media only screen and (max-width: 479px) { .responsive .mc4wp-form .form_element{width:100%;clear:both;margin-right:0;margin-left:0;float:none} }
    #top .mc4wp-form input[type=’text’],#top .mc4wp-form input[type=’email’],#top .mc4wp-form select,#top .mc4wp-form textarea{width:100%;margin-bottom:0;display:inline;min-width:50px;padding:13px;border-radius:2px}

    #557744

    Hey meertevanduuren!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 1024px) and (min-width: 990px) {
    .av-main-nav>li>a { font-size: 12px; }
    .logo * {
        max-width: 75%;
        top: 16px;
    }}

    Regards,
    Yigit

    • This reply was modified 10 years, 3 months ago by Yigit.
    #557697

    Labas!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    a.cart_dropdown_link {
        font-size: 25px!important;
    }

    Regards,
    Yigit

    #557626

    Hey digitalammo!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #advanced_menu_toggle {
        font-size: 50px;
        height: 65px;
        width: 65px;
        line-height: 65px;
    }
    
    #mobile-advanced a, #mobile-advanced .mega_menu_title {
        border: none!important;
    }
    
    #mobile-advanced li > a:before, .html_header_mobile_behavior #mobile-advanced span > a:before, #mobile-advanced .mega_menu_title:before { display: none !important; }
    
    #advanced_menu_toggle:hover {
        color: #cccccc!important;
        background: white!important;
        border: none;
        border-bottom: 2px solid #cccccc;
    }
    

    Regards,
    Yigit

    #557617

    Hi!

    Seems like you have removed subtext from your website but in case you would like to adjust the font size depending on screen size, please add following code to Quick CSS as well and adjust as needed

    @media only screen and (max-width: 768px) {
    .subtext { font-size: 30px !important; }}
    @media only screen and (max-width: 480px) {
    .subtext { font-size: 20px !important; }}

    Best regards,
    Yigit

    #557615

    Hey!

    Please post the content of your Quick CSS field here using http://pastebin.com/.
    You can try adding spaces between your phone number.

    To keep the text in one line, the best solution would be decreasing font size as i suggested here – https://kriesi.at/support/topic/phone-number-or-small-info-text-2/#post-557150

    Regards,
    Yigit

    #557599

    Hi!

    Try with this:

    [av_notification title="It's not too late..." color='green' border='solid' custom_bg='#444444' custom_font='#ffffff' size='normal' icon_select='yes' icon='ue865' font='entypo-fontello']
    Click the Shop tab to get your 2016 Mandala Wall Calendar.
    [/av_notification]

    Regards,
    Josue

    #557582

    Hey ronmann,

    You have a lot of items and a large font size plus a large logo there so there simply isn’t room to fit all of them in there, could you try to select a smaller font or maybe rearranging your menu structure or selecting a smaller logo?

    Thanks,
    Rikard

    #557433

    Hey argelayazilim!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 768px) {
    h2.ls-l { font-size: 20px !important; }}

    Cheers!
    Yigit

    #557417

    Hey!

    Like what we said on the previous post, we can’t reproduce it on our own installation. You can see it on the following screenshot. I’m not sure why it doesn’t work correctly in yours.

    As a temporary fix, please add the css code that we provided on the previous thread:

    .container_wrap.container_wrap_first.main_color.sidebar_right:after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
    }

    Best regards,
    Ismael

    #557390
    argelayazilim
    Participant

    We create slider with text but their font size is not responsive. Could you check our site. Thanks.

    #557342

    Hi MindSpark!

    No, I don’t think we have any documentation for that. It’s pretty easy, just drop it into the child theme style.css file. If it does not get applied then try using !important to make sure it overrides any other CSS.

    a { color: red !important; font-size: 10px !important; }
    

    Not sure about your second question. Are you trying to apply CSS in the dashboard? If so then try the “admin_head” hook, https://codex.wordpress.org/Plugin_API/Action_Reference/admin_head.

    Best regards,
    Elliott

    #557322

    Hi!

    Please use this:

    .avia-data-table tr td {
        font-size: 12px;
    }
    
    .avia-data-table tr th {
        font-size: 15px;
    }

    Cheers!
    Ismael

    Hi!

    Is it the post titles? Add this to your custom CSS.

    .slide-entry-title a {
        font-size: 14px;
    }

    Cheers!
    Elliott

    #557170

    Hey!

    Basically, width is not enough for numbers icons etc. You can try decreasing font size even more to solve the issue or you can use following code to remove icons on mobile

    @media only screen and (max-width: 480px) {
    .phone-info .av_font_icon { display: none !important; }}

    Best regards,
    Yigit

    #557150

    Hi!

    Please add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    .phone-info * {
        font-size: 12px!important;
    }
    #header_meta .container {
        width: 100%!important;
        max-width: 100%!important;
    }}

    Cheers!
    Yigit

    #557123
    voldemarasp
    Participant

    Hi there,

    Why do I get my iphone display phone icon in two lines?

    Here is the code:

    <span class=”av_font_icon avia_animate_when_visible av-icon-style- avia-icon-pos-left avia_start_animation avia_start_delayed_animation” style=”color:#fff; border-color:#fff;”><span class=”av-icon-char” style=”font-size:20px;line-height:20px;” aria-hidden=”true” data-av_icon=”” data-av_iconfont=”entypo-fontello”>  +370 5 270 4470 </span></span>  <span class=”av_font_icon avia_animate_when_visible av-icon-style- avia-icon-pos-left avia_start_animation avia_start_delayed_animation” style=”color:#fff; border-color:#fff;”><span class=”av-icon-char” style=”font-size:20px;line-height:20px;” aria-hidden=”true” data-av_icon=”” data-av_iconfont=”entypo-fontello”>   (Email address hidden if logged out) </span></span>

    Here is screen from Safari:

    http://postimg.org/image/ixbaf5c93/

    Thanks.

    #556891

    Hey Daniel,

    You have the following CSS for the buttons:

    .avia-button.avia-size-medium {
        padding: 12px 16px 10px;
        font-size: 13px;
        min-width: 225px;
        width: 225px;
        max-width: 225px;
    }

    This means that the buttons will stay 225 pixels wide all the time. You might need to rethink that, an option would be to wrap them in a div or paragraph and have the background colour in the wrapping element instead.

    Thanks,
    Rikard

    Hi,

    1. Try the following CSS:

    #main a {
    text-decoration:underline !important;
    }

    2. Try the following instead:

    .specialheading-font-size {
    font-size: 50px !important;
    }

    3. It looks like you have space already, did you manage to work it out? If not then please post a screenshot of what you would like to achieve.

    Regards,
    Rikard

    #556852

    Hey!

    Are you only wanting to change that H4? You could try some inline CSS if so.

    <h4 style = "font-size: 20px; color: red;">Some text</h4>
    

    Your using it inside a textblock element so you can use inline CSS in that case.

    Regards,
    Elliott

    #556833

    Thank you – I figured it out:
    Added add_editor_style() to child theme’s functions.php
    Created editor-style.css, placed it (via FTP) in child theme’s directory, and styled the editor. Now, the WYSIWYG editor displays, for instance, my Headers as the right color and size, body text is the actual site font, and is the right size, etc., etc., etc.

    • This reply was modified 10 years, 4 months ago by lightsites.

    Hey mfrenk!

    Go ahead and send us a link to your page and highlight the exact areas where your trying to change the font size. If your just trying to change the font size in general then you can do this in Dashboard > Enfold > General Styling > Fonts.

    Add this to your custom CSS to remove the categories post meta.

    .blog-categories { display: none !important; }
    

    Cheers!
    Elliott

    #556534

    Did you also change the font to quicksands? (and make it size 16)

    #556515
    oestergaardn
    Participant

    Hello,
    I was looking for a Quick CSS code to change font size for all content in tabular tables, but I can only find for Pricing Table and not for Tabular data.
    I have enable the Custom CSS field.

    Anyone who can help with this small problem?

    #556281

    Hi cesarvega!

    Add this to your custom CSS.

    .widget_nav_menu a {
        font-size: 25px !important;
    }

    Regards,
    Elliott

    #556266
    dominiquehurley
    Participant

    Hi and Merry Christmas / Happy New Year!

    I successfully used the Notification in the Avia Builder on my homepage and blog tab at http://www.DominiqueHurley.com

    But when I tried using it in a current blog post that I use as a Page (which didn’t use the Avia Builder but I used the “Insert Theme shortcode” dropdown menu, the little note doesn’t show – only the main message. This is the code I got, but then look at the page.

    [av_notification title='It's not too late...' color='green' border='solid' custom_bg='#444444' custom_font='#ffffff' size='normal' icon_select='yes' icon='ue865' font='entypo-fontello']
    Click the Shop tab to get your 2016 Mandala Wall Calendar.
    [/av_notification]

    http://www.dominiquehurley.com/introducing-the-12-universal-laws-enter-the-mandala/

    Thought you’d like to know.

    #556218
    themeforesttony
    Participant

    I am having problems trying to target the equation generated by the CAPTCH in the COntact form elelment. I want to shange font attribute like collor and size.
    I have tried targeting value_verifier_label, text_input captcha and avia_avia_age_1_verifier but can’t seem to find the right target. Can you help me out?

Viewing 30 results - 12,271 through 12,300 (of 18,742 total)