|
|
Forum moderator: bigblog |
uCoz Community For Webmasters Custom Solutions Some bugs i need fixed? Help pls? |
Some bugs i need fixed? Help pls? |
I circled the bugs on my custom template/css. The first one is a orange block piece that is in the back of the website name. The next one is the big bold website name on it,and the last one is the search, how do i remove these? Pleas help
Thanks! If you need the css or template just ask Post edited by DanielM - Tuesday, 2013-08-13, 0:02 AM
|
DanielM, to remove the red header background, remove the following from the header / top part of the website.
You may rather replace it with a logotype. If you want this let me know, and I'll provide a proper code for a image/text logo. Code <div id="logo"> <div class="textlogo"> <h1><a href="http://browsergaming.ucoz.net/" title="Main"><!-- <logo> -->Browser Gaming<!-- </logo> --></a></h1> </div> </div> To remove the search bar, remove the following Code <div id="topsearch"> <form style="display:inline" method="get" action="/search/"> <input type="text" name="q" class="topsearch_input" value="Search..." onfocus="if(this.value == 'Search...'){this.value = ''}" onblur="if(this.value == ''){this.value = 'Search...'}"> <input type="image" class="topsearch_submit" src="/img/1.gif"> </form> </div> Proud uCoz user since 2006
Freelance designer - http://pixelkhaos.com PixelKhaos on twitter - @PixelKhaos I can help you develop your site for a small fee. |
DanielM, Where the site name was before, add the following
Code <div id="logo"> <a href="/"><img src="LINK TO IMAGE"></a> </div> The id used for that div is #logo, you can modify it in your css. You would want to edit the size to what the logo you make is. It looks like this Code #logo { float: left; height: 95px; width: 300px; border: 0px solid red; } However, don't make it too tall. I recommend transparent logotype in .png format. Proud uCoz user since 2006
Freelance designer - http://pixelkhaos.com PixelKhaos on twitter - @PixelKhaos I can help you develop your site for a small fee. Post edited by PixelKhaos - Tuesday, 2013-08-13, 2:09 AM
|
| |||
| |||