Remove Home Page Header

Discussion in 'ColorWay WordPress Theme' started by mleatherman, Sep 14, 2013.

  1. mleatherman

    mleatherman New Member

    Joined:
    Sep 12, 2013
    Messages:
    23
    Likes Received:
    0
    1. Is it possible to remove the Home Page Header section and then the 4 Feature items will move up? How is this done?

    2. Also on my Contact page, how can I get the map and the contact form to be side by side on the page and not stacked on top of each other?

    3. I also want the Page Title on each page removed. I commented out code from page.php that I found on another thread, but it doesn't seem to work.

    4. How can I change the color, size and font for each of the 4 Feature headings at the bottom of page

    www.wptest.greencatdatadesign.com

    Thanks so much!
     
  2. Piyush

    Piyush Support Staff

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

    1. For your first issue,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .content-wrapper .content-info {
    display: none;
    }
    #content {
    margin-top: 20px;
    }
    You can adjust the value of "margin-top" as per your requirement.

    2. For your second issue,
    just go to https://maps.google.com/ and copy your iframe embed code from there.

    Sending image for reference
    [​IMG]




    And then go to the Pages > Add New in your dashboard and paste the code given below in the contact page text editor.
    Code:
    <div class="map-contact">Paste the Google map iframe embed code here</div>
    
    See the image for reference.

    [​IMG]


    Now,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .map-contact {
    float: right;
    }
    .contactform {
    float: left;
    }
    This will solve your issue.

    3. For your third issue,
    Go to the template-fullwidth.php template and follow the instruction shown in the image given below.

    [​IMG]

    Similarly, do the same in the page.php , contact.php, template-gallery.php and single.php.

    This will solve your issue.

    4. For your fourth issue,

    Go to js > custom.js present in your theme directory and remove the code given below


    Code:
    //Cufon replacement
    Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6');    
    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #content .one_fourth h3 a {
    color: red;
    font-family: symbol;
    font-size: 20px;
    }
    In place of red, symbol and 20px you can put your value as per your requirement.
    This will solve your issue.
     
  3. mleatherman

    mleatherman New Member

    Joined:
    Sep 12, 2013
    Messages:
    23
    Likes Received:
    0
     
  4. mleatherman

    mleatherman New Member

    Joined:
    Sep 12, 2013
    Messages:
    23
    Likes Received:
    0
    Hello thanks for your excellent help! I'm still not getting the results I need for issue #2.... If you check the Contact Us page, The map and the contact form are not side by side... Could you help? Thanks
     
  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  6. mleatherman

    mleatherman New Member

    Joined:
    Sep 12, 2013
    Messages:
    23
    Likes Received:
    0
    Hello, where do I find : js > custom.js ?
    Do I go to Editor and look there? Thanks
     
  7. Piyush

    Piyush Support Staff

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

    You will not get js directory in your dashboard.
    You can edit custom.js file through FTP.
    Open your Theme directory (through FTP) > js directory > custom.js
    Download custom.js file from there, Edit it, Then again upload it at the same place.

    See the link for more detail.
    http://www.inkthemes.com/how-to-edit-internal-files-through-ftp/07/

    I hope this will help you.
     

Share This Page