It's prosilver based yes.sixtvs wrote:Just wondering if this is for prosilver?
Open: ./styles/skyblue/template/overall_header.htmlsixtvs wrote:Also, how can I remove the sitename/site description as well as the search box? I can do that with prosilver but I cannot find the right codes to remove on this style. Thanks anyone.
Code: Select all
<h1>{SITENAME}</h1>
<br />
<span class="description">{SITE_DESCRIPTION}</span>
Code: Select all
<!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH -->
<div class="search-box">
<form action="{U_SEARCH}" method="post" id="search">
<fieldset>
<input name="keywords" id="keywords" type="text" maxlength="128" title="{L_SEARCH_KEYWORDS}" class="inputbox search tiny" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" />
<input class="button2" value="{L_SEARCH}" type="submit" /><br />
</fieldset>
</form>
</div>
<!-- ENDIF -->
Derky wrote:It's prosilver based yes.sixtvs wrote:Just wondering if this is for prosilver?
Open: ./styles/skyblue/template/overall_header.htmlsixtvs wrote:Also, how can I remove the sitename/site description as well as the search box? I can do that with prosilver but I cannot find the right codes to remove on this style. Thanks anyone.
Find & remove:Open: ./styles/skyblue/template/index_body.htmlCode: Select all
<h1>{SITENAME}</h1> <br /> <span class="description">{SITE_DESCRIPTION}</span>
Find & Remove:Code: Select all
<!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH --> <div class="search-box"> <form action="{U_SEARCH}" method="post" id="search"> <fieldset> <input name="keywords" id="keywords" type="text" maxlength="128" title="{L_SEARCH_KEYWORDS}" class="inputbox search tiny" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" /> <input class="button2" value="{L_SEARCH}" type="submit" /><br /> </fieldset> </form> </div> <!-- ENDIF -->
Hi sixtvs. What I did to center my custom header background image wassixtvs wrote:One last thing (I hope). I cannot center the logo using the instructions for prosilver. Are the codes I needed to center the logo elsewhere? And if it is, where can I find those so I can center the logo?
Code: Select all
.headerbar {
height: 200px;
background-image: url("{T_THEME_PATH}/images/headerbar.gif");
margin-bottom: 0px;
background-repeat: no-repeat;
Code: Select all
background-position: center;
I tried. But nope, it did not help. Thank you, I appreciate itMzVette wrote:Hope this helps.
try refreshing the theme and cache.sixtvs wrote:I tried. But nope, it did not help. Thank you, I appreciate itMzVette wrote:Hope this helps.