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.

Needing help with search bar and chat

5 posters

Go down

Needing help with search bar and chat Empty Needing help with search bar and chat

Post by Bubletan Sat 8 Oct 2011 - 18:35

1. How do I edit the search bar?
2. How do I remove @ symbol from chat mods?

Post me answers Smile

Edit: Like that?


Last edited by Bubletan on Sun 9 Oct 2011 - 14:47; edited 2 times in total
avatar
Bubletan
Forumember

Posts : 54
Reputation : 2
Language : Finnish

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by Sanket Sat 8 Oct 2011 - 20:25

Hello Bubletan, Can you please change the title of your problem from something like “Help, Urgent, Few questions, Problems, SOS” to something more related to your query/problem.

Your changing the title to something related to the problem will help users who will use the search feature on this forum to solve a similar problem. This way, your problem will be a solution for someone else’s problem.

Please confirm with the requirement to get help from members as well as staff.
Members are advised to confirm with this requirement & avoid helping unless the title is changed.

Your co-operation will help us in making this forum efficient. Thank you.

Staff
Sanket
Sanket
ForumGuru

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

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by Bubletan Tue 11 Oct 2011 - 13:49

Can anyone plz help? I really want to know how to edit the search bar look like on this site Smile
avatar
Bubletan
Forumember

Posts : 54
Reputation : 2
Language : Finnish

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by Nera. Tue 11 Oct 2011 - 15:42

Hi,

Please provide your forum URL for appearance problems.
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by Bubletan Fri 14 Oct 2011 - 13:19

I mean, how to edit the search bar look like the second one on phpBB 3, or is it even possible?
Needing help with search bar and chat Searchnm
avatar
Bubletan
Forumember

Posts : 54
Reputation : 2
Language : Finnish

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by *Mare-SBK™* Fri 14 Oct 2011 - 16:50

1. search bar
Input with value "Search..."
Code:
#search-box input#keywords {
your style code
}

Button "Search"
Code:
#search-box input.button2 {
your style code
}
*Mare-SBK™*
*Mare-SBK™*
Forumember

Male Posts : 181
Reputation : 16
Language : Serbian, English, German

http://design4u.forumsr.com/

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by Marc024 Fri 14 Oct 2011 - 17:08

how about removing @ symbol in chatbox for the moderators.?
Marc024
Marc024
New Member

Posts : 11
Reputation : 1
Language : english

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by *Mare-SBK™* Fri 14 Oct 2011 - 17:18

Hmm, It can be removed via javascript.

Add this to JS managament, and check "In all pages" :
Code:
  $(function() {
  var x=$('.chatbox_members').get();
    for (i=0; i<x.length; i++) {
        x[i].innerHTML=x[i].innerHTML.replace(/\>@ \</g,'> <');
    }
});


*Mare-SBK™*
*Mare-SBK™*
Forumember

Male Posts : 181
Reputation : 16
Language : Serbian, English, German

http://design4u.forumsr.com/

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by Marc024 Fri 14 Oct 2011 - 17:27

there's nothing happen -_-
Marc024
Marc024
New Member

Posts : 11
Reputation : 1
Language : english

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by Bubletan Fri 14 Oct 2011 - 20:34

*Mare-SBK™️* wrote:1. search bar
Input with value "Search..."
Code:
#search-box input#keywords {
your style code
}

Button "Search"
Code:
#search-box input.button2 {
your style code
}

To CSS? And do i put on your style code only url of pic or... something like backround: ("url") ? Im bad on CSS Smile
avatar
Bubletan
Forumember

Posts : 54
Reputation : 2
Language : Finnish

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by *Mare-SBK™* Fri 14 Oct 2011 - 21:03

Yes, to CSS. Use background: url('URL'); and define width and height. Wink
*Mare-SBK™*
*Mare-SBK™*
Forumember

Male Posts : 181
Reputation : 16
Language : Serbian, English, German

http://design4u.forumsr.com/

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by Guest Fri 14 Oct 2011 - 21:04

how to remove "@" ????
avatar
Guest
Guest


Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by *Mare-SBK™* Fri 14 Oct 2011 - 21:09

Marc024 wrote:there's nothing happen -_-

I don't use phpBB2, because DOM of phpBB2 is so bad, and CSS, too.
*Mare-SBK™*
*Mare-SBK™*
Forumember

Male Posts : 181
Reputation : 16
Language : Serbian, English, German

http://design4u.forumsr.com/

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by Bubletan Sat 15 Oct 2011 - 0:06

Whats wrong with this?

Code:
#search-box input#keywords {
    backround: url("http://img838.imageshack.us/img838/3446/empty2.png");
    width: 69px;
    height: 25px;
}
#search-box input.button2 {
    backround: url("http://img408.imageshack.us/img408/6923/emptyt.png");
    width: 24px;
    height: 25px;
}
avatar
Bubletan
Forumember

Posts : 54
Reputation : 2
Language : Finnish

Back to top Go down

Needing help with search bar and chat Empty Re: Needing help with search bar and chat

Post by Nera. Sat 15 Oct 2011 - 0:18

There is a letter g missing in the word background in both places Very good

The two images wont fit nicely, you need to replace them. No one can give you the images that are on FM's search bar since they are basicly FM's images. You have to make your own. Very good
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

Back to top

- Similar topics

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