Customizations

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

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

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    1. Contact Us Page: Remove "Categories, Archives" - http://modelsmakeupandmore.com/Sandbox/contact-us/

    2. Contact Us Page: "SEND" button is gold, would like it to be a RED button. - http://modelsmakeupandmore.com/Sandbox/contact-us/

    3. Logo - Align "LEFT" instead of centered - http://modelsmakeupandmore.com/Sandbox/

    4. Dotted Line under page title - remove dotted line - http://modelsmakeupandmore.com/Sandbox/features/

    5. Footer Text change to "WHITE" - http://modelsmakeupandmore.com/Sandbox/

    6. Page Title - Align left and change font color to WHITE - http://modelsmakeupandmore.com/Sandbox/features/
     
  2. sameerwalkar

    sameerwalkar Guest

    Hello,

    As per your queries:

    1. To Remove "Categories, Archives" :

    Code:
    .sidebar{
    display: none !important;
    }
    2. Contact Us Page: "SEND" button is gold, would like it to be a RED button:

    Code:
    #contactForm input[type="submit"]{
    background: red !important
    }
    3. Logo - Align "LEFT" instead of centered :

    Code:
    .content-wrapper .logo {
        text-align: left;
        }

    4. Dotted Line under page title - remove dotted line:
    Code:
    .main-content .page-info{
        border-bottom:none;
        }
    5. Footer Text change to "WHITE":
    Code:
    .footer-bottom p{
        color:#fff;
        }
    6. Page Title - Align left and change font color to WHITE -

    Code:
    .main-content .page-info h1.page-title{
        text-align:left;
        color: #fff !important;
        }
    Kindly paste these code in custom CSS in theme option panel of your dashboard.
     
  3. rdeshazer

    rdeshazer Member

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

Share This Page