Changing background Color on Aweber form

by 4 replies
5
Hi all!

My web form (banner) on my site www.fulldisclosurefitness.com looks fine on certain screens, but on my macbook air (smaller screen?)the name input fields bleed off onto the white background making them hard to see.

I was wondering what part of the html code to look for to change that background color to black (it's very light gray at the moment). It will still bleed off the bottom but at least the white forms will be on a black background.

If anyone has any advice I would appreciate it!

Jay
#programming #aweber #background #changing #color #form
  • In your style.css line 1748 you have this:
    Code:
    .mini_newsletter_banner {
    background-color: rgba(30, 30, 30, 0.15);
    width: 440px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 6px;
    margin: -27px 0 0 0;
    overflow: hidden;
    position: relative;
    z-index: 99;
    float: left;
    clear: both;
    }
    Change the background color there. (bolded above)
    • [1] reply
  • Yup, roger that! When I copied from Chrome Developer tools it shows it as RGB.
  • For changing background colors you have to modify css or you have to modify images which are used in the css as per the theme of the page used in the particular things

Next Topics on Trending Feed