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!
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 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. 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. 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.
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
Hello, Go to the embed code of the map and put the height to "250" and width to"230" respectively. This will solve your issue.
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.