Title: Background Image
Last modified: December 7, 2016

---

# Background Image

 *  Resolved [danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * (@danielandrosie)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/)
 * Hello
 * I am adding a full screen image on one of my pages and then the registration 
   form/table over the image. When I do this, the form/table doesn’t show any transparent
   gaps between the input fields. So the table just looks like one white solid block.
 * Is there anyway I can have a background image sitting behind the registration
   form/table and make it so the form field labels are transparent so there are 
   gaps between the form input fields and the form label fields?

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/topic/background-image-136/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/background-image-136/page/2/?output_format=md)

 *  Thread Starter [danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * (@danielandrosie)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8522833)
 * [http://socialseniors.co.nz/register/](http://socialseniors.co.nz/register/)
 *  [j09](https://wordpress.org/support/users/j09/)
 * (@j09)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8522900)
 * [@danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * The background does not seem to be there, so I can’t say for sure.
 * However, you may be interested in this
 * [CSS z-index](http://www.w3schools.com/cssref/pr_pos_z-index.asp)
 *  Thread Starter [danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * (@danielandrosie)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8522910)
 * Hey! It;s there now. Can you please check agaian.
 *  Thread Starter [danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * (@danielandrosie)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8522916)
 * Hello. The background image is there now. Can you please kindly check again?
 *  [j09](https://wordpress.org/support/users/j09/)
 * (@j09)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8522946)
 * Thank you
 * Well, you have a `<div>` that has the following CSS styling:
 * `class="um-row _um_row_1"`
 * So it could be either
 * `.um-row`
 * or
 * `._um_row_1`
 * that is setting the background as
 * `background-color: #ffffff`
 * I can’t really tell which one it is….check both
 * To make it transparent you need to change that to
 * `background-color: rgba(0,0,0,0)`
 *  [j09](https://wordpress.org/support/users/j09/)
 * (@j09)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8522961)
 * [@danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * And if you can’t find it, you can try a brute force approach and add this as 
   custom CSS
 *     ```
       .um-row, ._um_row_1 {
       background-color: rgba(0,0,0,0)
       }
       ```
   
 *  [j09](https://wordpress.org/support/users/j09/)
 * (@j09)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8522979)
 * Alternatively, you just wait and see if someone with more experience about this
   plugin replies.
 * I am sure they would have a better fix.
 *  Thread Starter [danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * (@danielandrosie)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8522999)
 * Thank you. I tried both of your suggestions, but neither work 🙁
 *  [j09](https://wordpress.org/support/users/j09/)
 * (@j09)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8523055)
 * [@danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * Sorry to hear that.
 * Upon further inspection I notice that the background is being applied inline.
 * This means that whatever changes you use in CSS will always be overridden by 
   the inline style.
 * This is what it looks like for reference:
 * `<div class="um-row _um_row_1 " style="padding: 0px 0px 0px 0px;background-color:#
   ffffff;margin: 0px 0px 30px 0px;border-width: 0px 0px 0px 0px;border-style: solid;
   border-radius: 0px;">`
 * your best bet is to wait for someone who knows better about this plugin to reply.
 * Good luck
 *  Thread Starter [danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * (@danielandrosie)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8523068)
 * Thank you very much, I appreciate the information and your prompt help!
 *  [j09](https://wordpress.org/support/users/j09/)
 * (@j09)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8523070)
 * ![The effect](https://i0.wp.com/s15.postimg.org/f272wlaqz/background_compressor.
   jpg?ssl=1)
 *  Thread Starter [danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * (@danielandrosie)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8526297)
 * Oh My God – that is exactly what I want! Sorry I missed this message last night,
   I only have seen it this morning. Are you able to tell me how/where I need to
   make the changes so I can get the page looking exactly like the above?
 * Thank you very much!
 *  Thread Starter [danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * (@danielandrosie)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8526311)
 * What I meant to say was how do I change it so the background isn’t being applied
   inline?
 * Thank you!
 *  [j09](https://wordpress.org/support/users/j09/)
 * (@j09)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8526368)
 * [@danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * Hello again
 * no worries, I just put it there for reference and was not waiting for a reply.
 * I won’t bother you with the details unless you want me to, But there is not much
   you can do about the inline style unless you modify the plugin files (I think)
 * it’s a fairly simple fix to apply in theory
 * `<div class="um-row _um_row_1 " style="padding: 0px 0px 0px 0px;background-color:#
   ffffff;margin: 0px 0px 30px 0px;border-width: 0px 0px 0px 0px;border-style: solid;
   border-radius: 0px;">`
 * needs to be changed to
 * `<div class="um-row _um_row_1 " style="padding: 0px 0px 0px 0px;background-color:
   rgba(0,0,0,0);margin: 0px 0px 30px 0px;border-width: 0px 0px 0px 0px;border-style:
   solid;border-radius: 0px;">`
 * **However**, without knowing how the plugin is structured, which I don’t, I can’t
   help.
 *  Thread Starter [danielandrosie](https://wordpress.org/support/users/danielandrosie/)
 * (@danielandrosie)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/#post-8526433)
 * Woah what awesome and responsive support, thank you very much!
 * I will have a play around and see if I can work it out, otherwise I shall be 
   back for the detail 🙂
 * Thank you!

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/topic/background-image-136/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/background-image-136/page/2/?output_format=md)

The topic ‘Background Image’ is closed to new replies.

 * ![](https://ps.w.org/ultimate-member/assets/icon-256x256.png?rev=3160947)
 * [Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin](https://wordpress.org/plugins/ultimate-member/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ultimate-member/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ultimate-member/)
 * [Active Topics](https://wordpress.org/support/plugin/ultimate-member/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ultimate-member/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ultimate-member/reviews/)

 * 19 replies
 * 2 participants
 * Last reply from: [j09](https://wordpress.org/support/users/j09/)
 * Last activity: [9 years, 5 months ago](https://wordpress.org/support/topic/background-image-136/page/2/#post-8527889)
 * Status: resolved