Title: Theme Creation &#8211; Problem
Last modified: August 30, 2016

---

# Theme Creation – Problem

 *  Resolved [Georgeba](https://wordpress.org/support/users/georgeba/)
 * (@georgeba)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/)
 * Hello!
    I’ve used an HTML Template and redesigned most of it, and now I’m converting
   it to a W-Press theme. Unfortunately, the styling of it is messed up and a couple
   other things probably that I’m not aware of. Here is what it is suppose to look
   like… (Keep in mind that this has no sidebar nor footer/header… [Here is Image](http://postimg.org/image/pns1rzr87/)
   [Here is Theme](http://www.mediafire.com/download/tbvmju8gq056yda/Planet+Lunar+-+Theme.zip)
   Any help would be greatly appreciated! (First time)

Viewing 13 replies - 16 through 28 (of 28 total)

[←](https://wordpress.org/support/topic/theme-creation-problem/?output_format=md)
[1](https://wordpress.org/support/topic/theme-creation-problem/?output_format=md)
2

 *  Thread Starter [Georgeba](https://wordpress.org/support/users/georgeba/)
 * (@georgeba)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658577)
 * Wonderful! Last question I have is how do I hide the header?
    [(Here it is now..)](http://rankme.planetlunar.com)
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658578)
 * Do you just want to hide it from view and keep the code in index.php?
 *  Thread Starter [Georgeba](https://wordpress.org/support/users/georgeba/)
 * (@georgeba)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658579)
 * Preferably yes
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658582)
 * At the bottom of your style.css file, add this:
 *     ```
       #headerwrap {
           display: none;
       }
       ```
   
 * Did that hide all you wanted in the header area?
 *  Thread Starter [Georgeba](https://wordpress.org/support/users/georgeba/)
 * (@georgeba)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658584)
 * That took away a bunch of stuff..
    Perhaps it is because this code..
 *     ```
       <div id="headerwrap">
       		<div class="container">
       			<div class="row">
       				<div class="col-lg-6">
       					<h1><span class="glyphicon glyphicon-fire"></span> welcome to Planet Lunar!</h1>
       					<form class="form-inline" role="form">
       					  <div class="form-group">
       					<h2><input id="exampleInputEmail1" placeholder="Game Pin"></h2>
       					  </div>
       				     <a href="http://www.roblox.com" class="demo-pricing demo-pricing-1">Enter</a>
       					</form>
       				</div><!-- /col-lg-6 -->
       				<div class="col-lg-6">
       					<img class="img-responsive" src="/wp-content/themes/Iced/assets/img/ipad-hand.png" alt="">
       				</div><!-- /col-lg-6 -->
       				<p>This is the main content. To display a lightbox click <a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'">here</a></p>
           <div id="light" class="white_content">This is the lightbox content. <a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'">Close</a></div>
   
       			</div><!-- /row -->
       		</div><!-- /container -->
       	</div><!-- /headerwrap -->
       ```
   
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658585)
 * So some stuff should not be hidden and some stuff should be?
 *  Thread Starter [Georgeba](https://wordpress.org/support/users/georgeba/)
 * (@georgeba)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658586)
 * Correct. Perhaps I should change the ID of it?
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658587)
 * It’s okay, umm you can remove that CSS I gave you for the style.css file. Can
   you outline the stuff you want hidden in the header area?
 *  Thread Starter [Georgeba](https://wordpress.org/support/users/georgeba/)
 * (@georgeba)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658588)
 * [Here is what I want removed](http://postimg.org/image/bo0755r4n/c5eb5bf6/)
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658590)
 * I’m not sure if that screenshot worked, is it this bit I’ve outlined in red: 
   [http://snag.gy/SL871.jpg](http://snag.gy/SL871.jpg) ?
 *  Thread Starter [Georgeba](https://wordpress.org/support/users/georgeba/)
 * (@georgeba)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658591)
 * Nope, it’s the white part
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658592)
 * Oh (I think)! Try adding this to the bottom of your style.css file instead:
 *     ```
       #headerimg {
           display: none;
       }
       ```
   
 *  Thread Starter [Georgeba](https://wordpress.org/support/users/georgeba/)
 * (@georgeba)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658594)
 * Yes!! Thank You So Much!!
    I’ll definitely credit you! Can’t thank you enough

Viewing 13 replies - 16 through 28 (of 28 total)

[←](https://wordpress.org/support/topic/theme-creation-problem/?output_format=md)
[1](https://wordpress.org/support/topic/theme-creation-problem/?output_format=md)
2

The topic ‘Theme Creation – Problem’ is closed to new replies.

## Tags

 * [glitch](https://wordpress.org/support/topic-tag/glitch/)
 * [html](https://wordpress.org/support/topic-tag/html/)
 * [problem](https://wordpress.org/support/topic-tag/problem/)
 * [style](https://wordpress.org/support/topic-tag/style/)
 * [template](https://wordpress.org/support/topic-tag/template/)

 * 28 replies
 * 2 participants
 * Last reply from: [Georgeba](https://wordpress.org/support/users/georgeba/)
 * Last activity: [10 years, 7 months ago](https://wordpress.org/support/topic/theme-creation-problem/page/2/#post-6658594)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
