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.

Question about the toolbar ~coding~

5 posters

Go down

Solved Question about the toolbar ~coding~

Post by KinzPost March 3rd 2013, 11:03 pm

Note to staff, both questions seem to be coding questions to me, however feel free to move of needed
Question 1 is solved
Spoiler:
~~~~~~~~~~~~~~~~~~~~~
The second is a question about the new toolbar. I think there's the code given that removes the "share" buttons but it also removes the search button. Is there anyway I can get a code that removes the "share" buttons but lets me keep the search option.

Thanks in advance for helping!


Last edited by KinzPost on March 4th 2013, 1:48 am; edited 1 time in total
KinzPost
KinzPost
Forumember

Posts : 25
Reputation : 2
Language : English

http://entertheforest.forumotion.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by Cassius Dio March 3rd 2013, 11:06 pm

Hi! Very Happy

For second problem, add to CSS Stylesheet:
Code:
#fa_share{
display: none !important;
}
Cassius Dio
Cassius Dio
Forumember

Male Posts : 581
Reputation : 79
Language : Romanian &English
Location : Yellow Submarine

http://beatles.forummo.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by KinzPost March 3rd 2013, 11:08 pm

SGSS wrote:Hi! Very Happy

For second problem, add to CSS Stylesheet:
Code:
#fa_share{
display: none !important;
}
I already have that code in the CSS. It's the one that removed the share icons and the search button
KinzPost
KinzPost
Forumember

Posts : 25
Reputation : 2
Language : English

http://entertheforest.forumotion.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by Cassius Dio March 3rd 2013, 11:09 pm

Are you sure it removes and the search box? scratch Can you post here your forum URL? Thanks.

About the first problem, try this:
Code:
$.getScript("http://xoxco.com/projects/code/rainbow/rainbow.js",function(){
$('a[href="/u79"] strong').rainbow({
colors: [
'#C80046',
'#C84000',
'#C8B400',
'#53C800',
'#00C744',
'#00C4C8',
'#004CC7',
'#3700C8'
],
animate: false

});

$('a[href="/URL_HERE"] strong').rainbow({
colors: [
'#C80046',
'#C84000',
'#C8B400',
'#53C800',
'#00C744',
'#00C4C8',
'#004CC7',
'#3700C8'
],
animate: false

});
});
Replace URL_HERE to the URL adress for user's profile. Wink
Cassius Dio
Cassius Dio
Forumember

Male Posts : 581
Reputation : 79
Language : Romanian &English
Location : Yellow Submarine

http://beatles.forummo.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by KinzPost March 3rd 2013, 11:13 pm

SGSS wrote:Are you sure it removes and the search box? scratch Can you post here your forum URL? Thanks.

About the first problem, try this:
Code:
$.getScript("http://xoxco.com/projects/code/rainbow/rainbow.js",function(){
$('a[href="/u79"] strong').rainbow({
colors: [
'#C80046',
'#C84000',
'#C8B400',
'#53C800',
'#00C744',
'#00C4C8',
'#004CC7',
'#3700C8'
],
animate: false

});

$('a[href="/URL_HERE"] strong').rainbow({
colors: [
'#C80046',
'#C84000',
'#C8B400',
'#53C800',
'#00C744',
'#00C4C8',
'#004CC7',
'#3700C8'
],
animate: false

});
});
Replace URL_HERE to the URL adress for user's profile. Wink
Thanks I'll try that!

http://googlesclub.forumotion.com/ <--- Website link
KinzPost
KinzPost
Forumember

Posts : 25
Reputation : 2
Language : English

http://entertheforest.forumotion.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by KinzPost March 3rd 2013, 11:17 pm

KinzPost wrote:
SGSS wrote:Are you sure it removes and the search box? scratch Can you post here your forum URL? Thanks.

About the first problem, try this:
Code:
$.getScript("http://xoxco.com/projects/code/rainbow/rainbow.js",function(){
$('a[href="/u79"] strong').rainbow({
colors: [
'#C80046',
'#C84000',
'#C8B400',
'#53C800',
'#00C744',
'#00C4C8',
'#004CC7',
'#3700C8'
],
animate: false

});

$('a[href="/URL_HERE"] strong').rainbow({
colors: [
'#C80046',
'#C84000',
'#C8B400',
'#53C800',
'#00C744',
'#00C4C8',
'#004CC7',
'#3700C8'
],
animate: false

});
});
Replace URL_HERE to the URL adress for user's profile. Wink
Thanks I'll try that!

http://googlesclub.forumotion.com/ <--- Website link

--Edit---

That also completely removes it from the user Googbone XP
KinzPost
KinzPost
Forumember

Posts : 25
Reputation : 2
Language : English

http://entertheforest.forumotion.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by Cassius Dio March 3rd 2013, 11:19 pm

Then try this: :/
Code:
 $.getScript("http://xoxco.com/projects/code/rainbow/rainbow.js",function(){
$('a[href="/u79"] strong, a[href="/URL_HERE"] strong').rainbow({
colors: [
'#C80046',
'#C84000',
'#C8B400',
'#53C800',
'#00C744',
'#00C4C8',
'#004CC7',
'#3700C8'
],
animate: false

});
});
Cassius Dio
Cassius Dio
Forumember

Male Posts : 581
Reputation : 79
Language : Romanian &English
Location : Yellow Submarine

http://beatles.forummo.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by KinzPost March 3rd 2013, 11:25 pm

SGSS wrote:Then try this: :/
Code:
 $.getScript("http://xoxco.com/projects/code/rainbow/rainbow.js",function(){
$('a[href="/u79"] strong, a[href="/URL_HERE"] strong').rainbow({
colors: [
'#C80046',
'#C84000',
'#C8B400',
'#53C800',
'#00C744',
'#00C4C8',
'#004CC7',
'#3700C8'
],
animate: false

});
});

It works!!! Thanks so much! :wouhou:
Ohmygoodness I'm so happy right now you just made my day <3
KinzPost
KinzPost
Forumember

Posts : 25
Reputation : 2
Language : English

http://entertheforest.forumotion.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by Cassius Dio March 3rd 2013, 11:28 pm

Glad I could help. Very Happy
Cassius Dio
Cassius Dio
Forumember

Male Posts : 581
Reputation : 79
Language : Romanian &English
Location : Yellow Submarine

http://beatles.forummo.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by SLGray March 3rd 2013, 11:53 pm

KinzPost:
Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead!
Please change the title of your topic, that is related to your question/issue, so that other users will be able to find their question/issue using the search engine.


Question about the toolbar ~coding~ Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51576
Reputation : 3525
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by KinzPost March 4th 2013, 1:46 am

SLGray wrote:KinzPost:
Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead!
Please change the title of your topic, that is related to your question/issue, so that other users will be able to find their question/issue using the search engine.
Sawwy beu
KinzPost
KinzPost
Forumember

Posts : 25
Reputation : 2
Language : English

http://entertheforest.forumotion.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by Sir Chivas™ March 4th 2013, 2:02 am

Is this solved?
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6980
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by KinzPost March 4th 2013, 2:07 am

CJ11™ wrote:Is this solved?
No, I'm still waiting for a reply for my second question about the toolbar
KinzPost
KinzPost
Forumember

Posts : 25
Reputation : 2
Language : English

http://entertheforest.forumotion.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by Sir Chivas™ March 4th 2013, 2:16 am

You've used this?
Code:
#fa_share {
display: none !important;
}
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6980
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by Cassius Dio March 4th 2013, 8:44 am

Try adding this:
Code:
#fa_share{
display: none !important;
}

#fa_search {
display: inline-block !important;
}
Cassius Dio
Cassius Dio
Forumember

Male Posts : 581
Reputation : 79
Language : Romanian &English
Location : Yellow Submarine

http://beatles.forummo.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by KinzPost March 5th 2013, 2:55 pm

SGSS wrote:Try adding this:
Code:
#fa_share{
display: none !important;
}

#fa_search {
display: inline-block !important;
}

Ah, thanks that works

This can be closed now :3
KinzPost
KinzPost
Forumember

Posts : 25
Reputation : 2
Language : English

http://entertheforest.forumotion.com/

Back to top Go down

Solved Re: Question about the toolbar ~coding~

Post by Sanket March 5th 2013, 3:19 pm

Topic Solved & Locked
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