Remove Searchbox and Forum Beveled/Curved Difficulities
4 posters
Page 1 of 1
Remove Searchbox and Forum Beveled/Curved Difficulities
Greetings, it's been a while since I've been here. Anyway I was hoping there was a code that would disable/take away the search box near the navbar. I'm on phpbb3 and I did some searching, but the codes I did find did not help.
I was also hoping there were codes that would curve/bevel the edges of forum content, as is done here in this forum. I was able to get the post content to be beveled/curved, but can't get the navbar border to curve or the category content. Thanks for any help!
I was also hoping there were codes that would curve/bevel the edges of forum content, as is done here in this forum. I was able to get the post content to be beveled/curved, but can't get the navbar border to curve or the category content. Thanks for any help!
Re: Remove Searchbox and Forum Beveled/Curved Difficulities
Lee Tamotsu wrote:Greetings, it's been a while since I've been here. Anyway I was hoping there was a code that would disable/take away the search box near the navbar. I'm on phpbb3 and I did some searching, but the codes I did find did not help.
I'm also on phpbb3 and i use the code below to hide my search box. someone from this forum helped me out (err i forgot his nick)
- Code:
#page-header #search-box{ display: none }
write the code in ACP> Display> Pictures & Colors> Colors> CSS Stylesheet
mahdy- Forumember
- Posts : 33
Reputation : 1
Language : :'(
Location : London
Re: Remove Searchbox and Forum Beveled/Curved Difficulities
Worked like a charm mahdy, thanks a ton!
As for the second problem, this is the code I have, but it doesn't add beveled/curved edges to the entire forum layout. I suppose what I need it for is the category/forum content and the navbar background, as this only works for the posted information and certain widgets.
As for the second problem, this is the code I have, but it doesn't add beveled/curved edges to the entire forum layout. I suppose what I need it for is the category/forum content and the navbar background, as this only works for the posted information and certain widgets.
body .post{
-moz-border-radius: 12px;
-webkit-border-radius: 12px;
}
body .module{
-moz-border-radius: 12px;
-webkit-border-radius: 12px;
}
body .panel{
-moz-border-radius: 12px;
-webkit-border-radius: 12px;
}
Re: Remove Searchbox and Forum Beveled/Curved Difficulities
Try to replace that with this:
- Code:
.post{
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
}
.module{
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
}
.panel{
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
}
#wrap{
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
}
Guest- Guest
Re: Remove Searchbox and Forum Beveled/Curved Difficulities
Phpbb3 rounded corners are usually done with imagesLee Tamotsu wrote:.... I was also hoping there were codes that would curve/bevel the edges of forum content, as is done here in this forum. I was able to get the post content to be beveled/curved, but can't get the navbar border to curve or the category content. Thanks for any help!
- Spoiler:
- https://2img.net/i/fa/fdf3/corners_left.png
https://2img.net/i/fa/fdf3/corners_right.png
Heres's an example of Phpbb3's default corners code:
span.corners-top span {
background-image: url("https://2img.net/i/fa/fdf3/corners_right.png");
background-position: 100% 0;
}
This Css will round your phpbb3 corners
(including your logo image) Here are demos of
your forum →With this code | →Without this code
- Code:
#wrap {
-moz-border-radius:10px;
-webkit-border-radius:10px;
border:#1E5C96 1px solid;
border-radius:10px
}
#logo img {
-moz-border-radius:10px;
-webkit-border-radius:10px;
border:none!important;
border-radius:10px
}
.navbar {
-moz-border-radius:10px;
-webkit-border-radius:10px;
border:none!important;
border-radius:10px
}
#main .module-advert {
-moz-border-radius:10px;
-webkit-border-radius:10px;
border:none!important;
border-radius:10px
}
.forabg {
-moz-border-radius:10px;
-webkit-border-radius:10px;
border:none!important;
border-radius:10px
}
remove the other border code, paste this & click submit.
Re: Remove Searchbox and Forum Beveled/Curved Difficulities
Topic Solved & Locked |
Nera.- Energetic
- Posts : 7078
Reputation : 2017
Language : English
Location : -
Similar topics
» Beveled corners & negative border-radius
» searchbox codes
» How to remove replies, views, latest posts and forum image columns on forum.
» How to remove "free forum" from the forum title?
» How do i remove this from my forum
» searchbox codes
» How to remove replies, views, latest posts and forum image columns on forum.
» How to remove "free forum" from the forum title?
» How do i remove this from my forum
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum