The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Hide Search box

3 posters

Go down

Solved Hide Search box

Post by perca 16/2/2011, 18:03

Hello again!

I would like to ask for the css to hide the following search box:

Hide Search box Screen11

I thank you in advance for the help and will be waiting for a reply.
perca
perca
Forumember

Female Posts : 75
Reputation : 0
Language : Portuguese
Location : Brazil

http://limestripe.englishboards.com/

Back to top Go down

Solved Re: Hide Search box

Post by Guest 16/2/2011, 18:06

Try this in your CSS:
Code:
.search-box{display:none;}
avatar
Guest
Guest


Back to top Go down

Solved Re: Hide Search box

Post by perca 16/2/2011, 18:31

Sadly that didn't work.. would it be something on my css? I'm sharing it so you can give it a check:

Code:
//*menu dinamico*//
ul.linklist li a img {
filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 0.5;}

ul.linklist li a img:hover {
filter:alpha(opacity=100);
-moz-opacity: 0.85;
opacity: 1.0;
position: relative;
top: -2px;}

//*esconder a busca*//
.search-box{display:none;}

.linklist {
display:none !important;}

.right, .rightside {
display:none !important;}

dd.lastpost span, ul.topiclist dd.searchby span, ul.topiclist dd.info span, ul.topiclist dd.time span, dd.redirect span,

dd.moderation span {display:none !important;}

a.button1, input.button1, a.button2, input.button2, button.button2 {
  background-color: #000000;}

//*widgets*//
.module {
background-image: url('URL IMAGE');
background-repeat: no-repeat;
background-position: top center;
border: 1px solid BLACK;}

.module .h3 {
color: white;}

a.button1, input.button1, a.button2, input.button2, button.button2 {
background-image: url('URL IMAGE');
background-repeat: repeat;
font-family: arial black;
color: #5e5d2a;}

#search-box #keywords {
width: 95px;
background-color: #000000;
}

input.search {
background-image: url('');
background-repeat: no-repeat;
background-position: left 1px;
padding-left: 17px;
}

.postprofile {
color: #ffffff;
text-align: center;}


//*widgtes*//

.module span.corners-top { background-image: url('http://img198.imageshack.us/img198/6572/left10.gif'); }
.module span.corners-top span { background-image: url('http://img35.imageshack.us/img35/4963/rightn10.gif'); }
.module span.corners-bottom { background-image: url('http://img198.imageshack.us/img198/6572/left10.gif'); }
.module span.corners-bottom span { background-image: url('http://img35.imageshack.us/img35/4963/rightn10.gif'); }

#search_menu , #plus_menu {
background : black;
}


ul#picture_legend {
background-position: center;
background-repeat: no-repeat;
background-image: url('http://img7.imageshack.us/img7/6904/barrabr.png');
text-align: center;
padding: 24px 0;}

Tx a lot for the help!
perca
perca
Forumember

Female Posts : 75
Reputation : 0
Language : Portuguese
Location : Brazil

http://limestripe.englishboards.com/

Back to top Go down

Solved Re: Hide Search box

Post by Guest 16/2/2011, 18:36

It should (:
Code:
.topic-actions .search-box{display:none !important;}
avatar
Guest
Guest


Back to top Go down

Solved Re: Hide Search box

Post by perca 16/2/2011, 19:32

Added that and erased the old one but the search is still there. My forum version is phpBB3 and the codes are like this now:

Code:
//*menu dinamico*//
ul.linklist li a img {
filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 0.5;}

ul.linklist li a img:hover {
filter:alpha(opacity=100);
-moz-opacity: 0.85;
opacity: 1.0;
position: relative;
top: -2px;}

//*esconder a busca*//
.topic-actions .search-box{display:none !important;}

.linklist {
display:none !important;}

.right, .rightside {
display:none !important;}

dd.lastpost span, ul.topiclist dd.searchby span, ul.topiclist dd.info span, ul.topiclist dd.time span, dd.redirect span,

dd.moderation span {display:none !important;}

a.button1, input.button1, a.button2, input.button2, button.button2 {
  background-color: #000000;}

//*widgets*//
.module {
background-image: url('URL IMAGE');
background-repeat: no-repeat;
background-position: top center;
border: 1px solid BLACK;}

.module .h3 {
color: white;}

a.button1, input.button1, a.button2, input.button2, button.button2 {
background-image: url('URL IMAGE');
background-repeat: repeat;
font-family: arial black;
color: #5e5d2a;}

#search-box #keywords {
width: 95px;
background-color: #000000;
}

input.search {
background-image: url('');
background-repeat: no-repeat;
background-position: left 1px;
padding-left: 17px;
}

.postprofile {
color: #ffffff;
text-align: center;}


//*widgtes*//

.module span.corners-top { background-image: url('http://img198.imageshack.us/img198/6572/left10.gif'); }
.module span.corners-top span { background-image: url('http://img35.imageshack.us/img35/4963/rightn10.gif'); }
.module span.corners-bottom { background-image: url('http://img198.imageshack.us/img198/6572/left10.gif'); }
.module span.corners-bottom span { background-image: url('http://img35.imageshack.us/img35/4963/rightn10.gif'); }

#search_menu , #plus_menu {
background : black;
}


ul#picture_legend {
background-position: center;
background-repeat: no-repeat;
background-image: url('http://img7.imageshack.us/img7/6904/barrabr.png');
text-align: center;
padding: 24px 0;}

Any idea about why it's not working? I thank you once more for the help!
perca
perca
Forumember

Female Posts : 75
Reputation : 0
Language : Portuguese
Location : Brazil

http://limestripe.englishboards.com/

Back to top Go down

Solved Re: Hide Search box

Post by Vlajki 16/2/2011, 21:27

Have you tried
visibility: hidden; instead of display: none?
Vlajki
Vlajki
Forumember

Male Posts : 724
Reputation : 359
Language : Serbian & English
Location : Serbia

Back to top Go down

Solved Re: Hide Search box

Post by perca 17/2/2011, 13:01

That worked! Thank you very much for the help!
perca
perca
Forumember

Female Posts : 75
Reputation : 0
Language : Portuguese
Location : Brazil

http://limestripe.englishboards.com/

Back to top Go down

Solved Re: Hide Search box

Post by Sanket 17/2/2011, 15:27

Since this thread appears to be solved, I will lock this thread and mark it as solved.
Hide Search box 2j4t5a8

Sanket Smile

Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum