Tagged: ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #822128

    I’ve designed an aweber form to have the body text be white. But it appears the theme is overriding it and causing the text to be dark.
    .main_color *::-moz-placeholder {
    color: #8d8d8d;
    opacity: 1;
    }

    (The link is attached privately)

    I’ve put the form into a code block.
    I’ve tried a number of things in the quick CSS to try to override the css for that form only but to no avail – here are some of my efforts:

    .af-element.bodyText
    {
    color: #FFFFFF ;
    }

    #af-form-226887355 .bodyText
    {
    color: #FFFFFF ;
    }

    #af-form-226887355 .af-standards .af-element .bodyText p
    {
    color: #FFFFFF;
    }

    #af-form-226887355 .af-body .af-element .bodyText {
    color: #ffffff;
    }

    I hope you can help me pinpoint the rule I need to make.

    Thanks!

    Mary-Lynn

    #822329

    Hey biggsuccess,

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

    .main_color *::-moz-placeholder {
      color: #fff !important;
    }

    Best regards,
    Rikard

    #822578

    Hi Rikard, thanks. When that did not work, I looked closer at my Quick CSS, and I’ve discovered the problem, but still need some assistance.

    I’ve set the following in Quick CSS
    #top strong{color:#4E4E4E;}

    I did this to prevent bold text from turning orange ( my themes color.)

    When I removed that rule, the text on the problem page in the aweber form that was #4E4E4E;, turned orange.
    I’ve put the rule back for now, but how can I accomplish keeping my bold text #4E4E4E site-wide, but exclude the text in the aweber form?

    Thanks much!

    #823061

    Hi,

    Please try this to have a specific rule for the strong tag on that page only:

    .page-id-8402 strong {
      color:#000;
    }

    Make sure this rule is placed under your other rule in Quick CSS.

    Best regards,
    Rikard

    #823348

    Rikard,

    While that didn’t work – you put me on the right track. When I used the following, it worked!

    #af-form-226887355 strong {
    color:#ffffff;
    }

    I had tried several other things with the #af-form-226887355 – like p; & color; but not strong.
    I truly appreciate your assistance!

    Mary-Lynn

    #823353

    Hi!

    Glad Rikard could help! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Can't chage body text color on Aweber Form’ is closed to new replies.