Continue Customization

Discussion in 'Real Photography WordPress Theme' started by rdeshazer, May 27, 2015.

Thread Status:
Not open for further replies.
  1. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    Contact Us Page - http://modelsmakeupandmore.com/Sandbox/contact-us/
    1. "Contact Us" - White Font and align Left
    2. Dotted Line under contact us - remove
    3. Name, Email, Message - White Font
    4. Field boxes are gray - Change to White
    5. Field text font color is white\gray - Change to Black

    Footer Two Dotted Lines - http://modelsmakeupandmore.com/Sandbox/
    1. Change dotted line footer to a SOLID line.

    Social Media Icons - http://modelsmakeupandmore.com/Sandbox/
    1. Social media icons in the footer, can you add LINKEDIN?

    Dropdown Menu Background & Font Color - http://modelsmakeupandmore.com/Sandbox/Gallery
    1. Change link menu background from white to BLACK.
    2. Change Font color from gray to WHITE.
    see attachment.
     

    Attached Files:

  2. sameerwalkar

    sameerwalkar Guest

    Hello,

    As per your queries:

    1, 2. "Contact Us" - White Font and align Left and Dotted Line under contact us - remove:

    Code:
    .page-bar h1.page_title{
    color:#fff;
    border-bottom: none;
    }
    3. Name, Email, Message - White Font:
    Code:
    #contactForm input, .contactform textarea, .contactform label {
      color: #fff !important;
    }
    
    4. Field boxes are gray - Change to White:
    Code:
    #contactForm input[type="text"], #contactForm textarea{
    background: #fff !important;
    }
    5. Field text font color is white\gray - Change to Black:

    Code:
    #contactForm input[type="text"], #contactForm textarea{
      color: black !important;
    }
    6. Footer Two Dotted Lines


    Code:
    .footer-bottom{
     
      border-top: none;
     
      border-bottom: none;
     
    }
    7. To add LINKEDIN Social media icons in the footer:
    We would require to do source code customization. Let me know if you would like to do that.


    Dropdown Menu Background & Font Color:

    1. Change link menu background from white to BLACK.
    Code:
    #menu .ddsmoothmenu li ul{
      background: black;
    }
    
    2. Change Font color from gray to WHITE:
    Code:
    #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited{
    color: #fff!important;
    }
    Hope it will solve your issue. Let me know for further doubts.
     
  3. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    6. Footer Two Dotted Lines - http://modelsmakeupandmore.com/Sandbox/
    1. Change dotted line footer to a SOLID line.

    The code above removed the dotted lines, I would like the line to be "SOLID" not "DOTTED".
     
  4. sameerwalkar

    sameerwalkar Guest

    Hello,

    Kindly apply the below CSS code:

    Code:
    .footer-bottom { 
      border-top: 1px solid #474545;
      border-bottom: 1px solid #474545;
    }
    Hope it will solve your issue.
     
  5. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
Thread Status:
Not open for further replies.

Share This Page