Homepage design changes

Discussion in 'ColorWay WordPress Theme' started by connecte, Jun 8, 2015.

  1. connecte

    connecte New Member

    Joined:
    Sep 3, 2014
    Messages:
    19
    Likes Received:
    0
    Hello,

    I would like to do the following:

    Remove the green bar on the right side of the slider text area.
    Make the slider text box slightly more translusent
    Add a color to the background of the website (light brown, green, or blue)
    Reduce the whitespace between the slider and the text box below
    Reduce the text size of the text below the slider
    Be sure my slider is centered

    Here is my website www.connectedbirthva.com
     
  2. Sobhagya

    Sobhagya Guest

    Joined:
    May 29, 2015
    Messages:
    414
    Likes Received:
    6
    Hello,

    Greetings from InkThemes,

    You can resolve it yourself, All you have to do is just go to Dashboard->Appearance->Theme Options->Styling Option->Custom CSS

    field and try to cut paste the given below CSS code there .

    Code:
    .slide .slide-content.entry {
      border-right: 1px solid rgba(186, 186, 186, 0) !important;
    }
     
    .slide .slide-content.entry {
      background-color: rgba(0, 0, 0, -0.5 ) !important;
    }
     
    .container {
      background-color: #F2D6C0 !important;
    }
     
    .content-info h1.title {
      font-size: 25px !important;
      margin-bottom: 5px !important;
      margin-top: -18px !important;
    }
     
    .slide .slide-content.entry {
      margin-left: 161px !important;
    }
     
    img.slide-img {
      margin-left: 160px !important;
    }
    Do let me know if you need further assistance,
     
  3. connecte

    connecte New Member

    Joined:
    Sep 3, 2014
    Messages:
    19
    Likes Received:
    0
    Hello,

    Thank you for this code! The slider is now too far over to the right. I don't love the brown color, but will figure that out on my own. Also, there is too much white space between the logo and the menu. Here is all of the code I have on my site in case something need to change. Thank you again!

    .logo img {
    max-height: 125px;
    }

    img.slide-img {
    width: 850px !important;

    }.slide .slide-content.entry {
    border-right: 1px solid rgba(186, 186, 186, 0) !important;
    }

    .slide .slide-content.entry {
    background-color: rgba(0, 0, 0, -0.5 ) !important;

    }

    .slide .slide-content.entry {
    margin-left: 161px !important;
    }

    img.slide-img {
    margin-left: 160px !important;
    }
     
  4. connecte

    connecte New Member

    Joined:
    Sep 3, 2014
    Messages:
    19
    Likes Received:
    0
    I also decided to keep the text of the bar above the four feature images larger but may change that as I move on with designing.

    Mandy
     
  5. connecte

    connecte New Member

    Joined:
    Sep 3, 2014
    Messages:
    19
    Likes Received:
    0
    Looking at it again -- on my desktop, the slider is center, but on my phone it is way too far over to the right.
     
  6. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello,

    Please use the CSS code given below : -
    Code:
    @media only screen and (max-width: 480px){
    #slides .slide-img {
      height: auto !important;
      margin-left: 0 !important;
    }
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    #slides .slide-img {
      height: auto !important;
      margin-left: 0 !important;
    }
    }
    Thanks,
    Praveen
     

Share This Page