Question about the toolbar ~coding~
5 posters
Page 1 of 1
Question about the toolbar ~coding~
Note to staff, both questions seem to be coding questions to me, however feel free to move of needed
Question 1 is solved
Thanks in advance for helping!
Question 1 is solved
- Spoiler:
The first is a javascript problem. I have a code for one of my members to have a rainbow username
The code is 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
});
});
~~~~~~~~~~~~~~~~~~~~~
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
Re: Question about the toolbar ~coding~
Hi!
For second problem, add to CSS Stylesheet:
For second problem, add to CSS Stylesheet:
- Code:
#fa_share{
display: none !important;
}
Re: Question about the toolbar ~coding~
I already have that code in the CSS. It's the one that removed the share icons and the search buttonSGSS wrote:Hi!
For second problem, add to CSS Stylesheet:
- Code:
#fa_share{
display: none !important;
}
Re: Question about the toolbar ~coding~
Are you sure it removes and the search box? Can you post here your forum URL? Thanks.
About the first problem, try this:
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
});
});
Re: Question about the toolbar ~coding~
Thanks I'll try that!SGSS wrote:Are you sure it removes and the search box? Can you post here your forum URL? Thanks.
About the first problem, try this:Replace URL_HERE to the URL adress for user's profile.
- 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
});
});
http://googlesclub.forumotion.com/ <--- Website link
Re: Question about the toolbar ~coding~
KinzPost wrote:Thanks I'll try that!SGSS wrote:Are you sure it removes and the search box? Can you post here your forum URL? Thanks.
About the first problem, try this:Replace URL_HERE to the URL adress for user's profile.
- 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
});
});
http://googlesclub.forumotion.com/ <--- Website link
--Edit---
That also completely removes it from the user Googbone XP
Re: Question about the toolbar ~coding~
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
});
});
Re: Question about the toolbar ~coding~
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!
Ohmygoodness I'm so happy right now you just made my day <3
Re: Question about the toolbar ~coding~
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. |
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: Question about the toolbar ~coding~
SawwySLGray 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.
Re: Question about the toolbar ~coding~
No, I'm still waiting for a reply for my second question about the toolbarCJ11™ wrote:Is this solved?
Re: Question about the toolbar ~coding~
Try adding this:
- Code:
#fa_share{
display: none !important;
}
#fa_search {
display: inline-block !important;
}
Re: Question about the toolbar ~coding~
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
Re: Question about the toolbar ~coding~
Topic Solved & Locked |
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Similar topics
» HTML Coding Question
» Transparency coding question
» Coding question and the theme picker
» How to fix this coding problem
» Coding Banners
» Transparency coding question
» Coding question and the theme picker
» How to fix this coding problem
» Coding Banners
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum