Make Menu, Textbox, and Call box more transparent?

Discussion in 'RoadFighter WordPress Theme' started by gdfred, Aug 1, 2013.

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

    gdfred New Member

    Joined:
    Jul 31, 2013
    Messages:
    23
    Likes Received:
    1
    Is there a CSS code that will make these overlay backgrounds more transparent? Say 50% or 75% transparent?

    Also is there a way to re-position these boxes? Or have them fade in or 'slide' up onto the main image field?

    Thanks.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    For the background tranparent issue,
    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .menu-wrapper {
    background: rgba(255,255,255,.5);
    }
    .flex-caption {
    opacity: .5;
    }
    .header_wrapper .call-us {
    opacity: .5;
    }
    For the re-position issue,
    Paste the code given below in Custom CSS
    Code:
    .menu-wrapper {
    margin-top: 25px;
    }
    .header_wrapper {
    margin-top: 37px;
    }
    .flex-caption {
    position: absolute;
    right: 12%;
    bottom: 40px;
    }
    You can adjust the values of margin-top, right and bottom as per your requirement.
    This will solve your issue.
     
  3. gdfred

    gdfred New Member

    Joined:
    Jul 31, 2013
    Messages:
    23
    Likes Received:
    1
    Thanks. Is it possible to move the menu bar to near the top of the slider and place the logo and call box below it?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to header.php present in your theme directory and follow the instruction as shown in image given below

    2013-08-02_1607.png


    This will solve your issue.
     
  5. johnstonkmm

    johnstonkmm New Member

    Joined:
    Jul 29, 2013
    Messages:
    7
    Likes Received:
    1
    Thanks for the support and the questions. I tried them and it worked perfect! Thanks
     
  6. gdfred

    gdfred New Member

    Joined:
    Jul 31, 2013
    Messages:
    23
    Likes Received:
    1
    Hi Gourva and Piyush,

    I am kind of new to WP and I do not know where to find the "header.php" file or the "theme directory" from within Wordpress. Can you tell me how to find the theme directory? Thank you. I appreciate all the support you guys give.

    Greg
     
  7. gdfred

    gdfred New Member

    Joined:
    Jul 31, 2013
    Messages:
    23
    Likes Received:
    1
    I figured out how to edit the header.php file in Wordpress. If anyone else needs to know you can get there via:

    Dashboard>Appearance>Themes>Editor and select the .php file you want to edit...

    (Before I edited, I saved an original copy of the hearder.php file text with notepad, just in case I created a glitch and needed to go backwards!)

    Thanks again to the support team! I knew it was the weekend. So I went searching on the wordpress.org site.
     
Thread Status:
Not open for further replies.

Share This Page