Remove search box and change profile side
The forum of the forums :: Support forum :: Forum Design & Appearance Help :: Design & Appearance Problems Archives
Page 1 of 1 • Share •
Remove search box and change profile side
Hey guys.
I had this problem before and i didnt get a solotion so imma ask again.
I am using this hitskin : http://no.hitskin.com/search-a-skin/professional-phpbb3-157497.htm
And here is my forum : http://www.revengelesspk.com/
If you look closely behind the navigation buttons you will see the little search box. I want to remove it.
I used a code that i have used on all forum i have had but it didnt work.
Can somebody provide me with another code perhaps.
The other problem i have is that in topics the profile is on the right, i have changed it in Configuration but it wont work. I believe that it lays in the CSS but i cannot find it since the CSS has over 3000 codes, so i really dont know what to search for.
Thanks for helping me guys !
Regards
Vaccam
EDIT
Search box problem solved. But ones i remove the search box then this little black appear above my header.

I had this problem before and i didnt get a solotion so imma ask again.
I am using this hitskin : http://no.hitskin.com/search-a-skin/professional-phpbb3-157497.htm
And here is my forum : http://www.revengelesspk.com/
If you look closely behind the navigation buttons you will see the little search box. I want to remove it.
I used a code that i have used on all forum i have had but it didnt work.
- Code:
a.mainmenu[href="/groups"], a.mainmenu[href="/faq"], a.mainmenu[href="/search"], a.mainmenu[href="/calendar"], a.mainmenu[href="/Home"], a.mainmenu[href="/portal"] {
display: none;
}
Can somebody provide me with another code perhaps.
The other problem i have is that in topics the profile is on the right, i have changed it in Configuration but it wont work. I believe that it lays in the CSS but i cannot find it since the CSS has over 3000 codes, so i really dont know what to search for.
Thanks for helping me guys !
Regards
Vaccam
EDIT
Search box problem solved. But ones i remove the search box then this little black appear above my header.

Last edited by vaccam on March 23rd 2014, 6:30 pm; edited 1 time in total
Re: Remove search box and change profile side
Hi 
I do believe that the problem is fixed with the header?
From my computer's view.
Also, can you please provide me how to move the profile to the left in the settings? I totally forgot and if I can know, maybe I may be able to code something.
Regards,
Pizza Boi

I do believe that the problem is fixed with the header?

Also, can you please provide me how to move the profile to the left in the settings? I totally forgot and if I can know, maybe I may be able to code something.
Regards,
Pizza Boi
Re: Remove search box and change profile side
@Pizza Boi wrote:Hi
I do believe that the problem is fixed with the header?From my computer's view.
Also, can you please provide me how to move the profile to the left in the settings? I totally forgot and if I can know, maybe I may be able to code something.
Regards,
Pizza Boi
Wow my are not on the header

Re: Remove search box and change profile side
Hi 
If you want to move it to the left and be more appealing, try this:
Regards,
Pizza Boi

- Code:
div.navbar ul.linklist {
top: 30px;
position: relative;
}
If you want to move it to the left and be more appealing, try this:
- Code:
div.navbar ul.linklist {
top: 30px;
left: -183px;
position: relative;
}
Regards,
Pizza Boi
Re: Remove search box and change profile side
The black line on the top of the header is still there.
Re: Remove search box and change profile side
Hi 
This code gives the page the ability to adjust the whole thing. Try working around it please.
Edit: I forgot to add. The reason why it has a black portion is because the image you have HAS that black portion. I'm afraid that if you want to work easier around it, you have to crop the black portion out of the picture.
Regards,
Pizza Boi

This code gives the page the ability to adjust the whole thing. Try working around it please.
- Code:
#phpbb > div.conteneur_minwidth_IE > div > div {
position: relative;
top: -10px;
min-width: 1065px;
left: -30px;
}
Edit: I forgot to add. The reason why it has a black portion is because the image you have HAS that black portion. I'm afraid that if you want to work easier around it, you have to crop the black portion out of the picture.
Regards,
Pizza Boi
Re: Remove search box and change profile side
Yeah that true
I noticed that now
Thansk.
Btw what code can i use if i want to move the navigation buttons under the line. You know on the header there is a line cutting it, i want the under there


Btw what code can i use if i want to move the navigation buttons under the line. You know on the header there is a line cutting it, i want the under there

Re: Remove search box and change profile side
Hello.
Problem for profile is that post body is floated left.
You need to find in css .postbody and remove
Or if you haven't that add this to your css:
Problem for profile is that post body is floated left.
You need to find in css .postbody and remove
- Code:
float: left;
Or if you haven't that add this to your css:
- Code:
.postbody {
float: right;
}
Re: Remove search box and change profile side
Whoever made that theme used margin-top to position the navabar.
Try this and adjust it if necessary :
Try this and adjust it if necessary :
- Code:
ul.navlinks { margin-top:-45px !important; }
Re: Remove search box and change profile side
Zyon wrote:Hello.
Problem for profile is that post body is floated left.
You need to find in css .postbody and remove
- Code:
float: left;
Or if you haven't that add this to your css:
- Code:
.postbody {
float: right;
}
Yeah sure, but where do i replace it in here ? It is the whole Posts CSS
- Code:
#wrap div#page-body div.topic-actions,#wrap div#page-body .pagination,#wrap div#page-body .left-box,#wrap div.postbody ul.profile-icons,#wrap div.postbody img,#wrap dl.postprofile,#wrap div.post .left,#wrap div.postbody div.signature {
float: left;
display: none !important;
}
#wrap dl.postprofile {
float: none;
}
#wrap div.postbody .online {
background-image: none;
}
#wrap div.postbody {
width: auto;
}
#wrap div.postbody h3 {
font-size: 10pt;
}
#wrap div.postbody p.author {
width: 100%;
border-bottom: 1px dashed #ccc;
}
#wrap div#page-body div.post {
padding: 0 0 2em 0;
border-top: 3px double #ccc;
}
div.postbody {
width: 100%;
float: none;
}
#wrap div#page-body div.post .content {
overflow: visible;
}
Re: Remove search box and change profile side
@Pizza Boi wrote:Hi
- Code:
div.navbar ul.linklist {
top: 30px;
position: relative;
}
If you want to move it to the left and be more appealing, try this:
- Code:
div.navbar ul.linklist {
top: 30px;
left: -183px;
position: relative;
}
Regards,
Pizza Boi
Hi

In this previous post of mine, when I tried that in google, it moved the navigation bars. Can you please check if it works for you since my google is going bonkers as of now.
#1 Option: Makes it go down
#2 Option: Makes it under RevengelessPK
Regards,
Pizza Boi
Re: Remove search box and change profile side
@Pizza Boi wrote:@Pizza Boi wrote:Hi
- Code:
div.navbar ul.linklist {
top: 30px;
position: relative;
}
If you want to move it to the left and be more appealing, try this:
- Code:
div.navbar ul.linklist {
top: 30px;
left: -183px;
position: relative;
}
Regards,
Pizza Boi
Hi
In this previous post of mine, when I tried that in google, it moved the navigation bars. Can you please check if it works for you since my google is going bonkers as of now.
#1 Option: Makes it go down
#2 Option: Makes it under RevengelessPK
Regards,
Pizza Boi
You missed your calculation there my friend

- Code:
div.navbar ul.linklist {
top: 73px;
left: -280px;
position: relative;
}
Try to come on now and see

Re: Remove search box and change profile side
Hi 
I know I suck at Math, don't rub it in
.
Anyway, did it work though?
Regards,
Pizza Boi

I know I suck at Math, don't rub it in

Anyway, did it work though?
Regards,
Pizza Boi
Re: Remove search box and change profile side
Still an issue with the profiles being on the right side ;-(
Re: Remove search box and change profile side
Hi 
Does this work?
ACP < Generals < Configuration < Pages Structure < Profile position in messages: Left < Save
Regards,
Pizza Boi

Does this work?
ACP < Generals < Configuration < Pages Structure < Profile position in messages: Left < Save
Regards,
Pizza Boi
Re: Remove search box and change profile side
Hi 
Did you try resyncing, clearing your cache and cookies as well as checking your console for errors and the CSS?
Regards,
Pizza Boi

Did you try resyncing, clearing your cache and cookies as well as checking your console for errors and the CSS?
Regards,
Pizza Boi
Re: Remove search box and change profile side
Well as i metioned above, look at the CSS code. I have no idea what to change.
Re: Remove search box and change profile side
Could you post your CSS?

Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.

Re: Remove search box and change profile side
Hi 
I figured out what's wrong. Put this in your CSS
:
The reason why it still is in the left is because div.postbody is floating in the left, you should move it to the right
.
Regards,
Pizza Boi

I figured out what's wrong. Put this in your CSS

- Code:
div.postbody {
float: right !important;
}
The reason why it still is in the left is because div.postbody is floating in the left, you should move it to the right

Regards,
Pizza Boi
Re: Remove search box and change profile side
Hi 
The pizza's here! That'd be 2.99$
.
No problem~
Regards,
Pizza Boi

The pizza's here! That'd be 2.99$

No problem~
Regards,
Pizza Boi
The forum of the forums :: Support forum :: Forum Design & Appearance Help :: Design & Appearance Problems Archives
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum