How do you customize the Jump to: menu?
3 posters
Page 1 of 1
How do you customize the Jump to: menu?
How do you customize the "Jump to:" menu as seen near the bottom of the topic lists and topics.? I don't want to add a image background or anything like that, just a few simple background color changes and text color changes.
thanks
thanks
Last edited by runawayhorses on May 8th 2012, 9:18 pm; edited 2 times in total
Re: How do you customize the Jump to: menu?
i think the background color for that will be the drop down menu color in your color list.
Other then that i am sure it can be done in your css too, whats you forum link, the one in your profile
Other then that i am sure it can be done in your css too, whats you forum link, the one in your profile
kirk- Forumaster
- Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn
Re: How do you customize the Jump to: menu?
Yes the one in my profile.
Ok I found the background color for that, so all I need now is the css code to change the text and maybe the GO color also.
Ok I found the background color for that, so all I need now is the css code to change the text and maybe the GO color also.
Re: How do you customize the Jump to: menu?
You can try this, change the font color where it says
font-color: #000000;
I am not sure about the go button, i will have to try a few more things
font-color: #000000;
- Code:
select {
background-color: #969494;
border: 1px solid #5DD5F0;
cursor: pointer;
font-family: Verdana,Arial,Helvetica,sans-serif;
font-weight: 400;
font-color: #000000;
padding: 1px;
vertical-align: middle;
}
I am not sure about the go button, i will have to try a few more things
Last edited by kirk on May 8th 2012, 6:47 pm; edited 3 times in total
kirk- Forumaster
- Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn
Re: How do you customize the Jump to: menu?
- Code:
.vf_jumpbox select {
background: blurgh...
color: blurgh...
}
.vf_jumbox .button2 {
blurgh...
}
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: How do you customize the Jump to: menu?
Kirk when I tried to add the code I got this message "Detected error
We have counted a different number of "{" and of "}". It means your CSS risks to be not valid and will not be posted correctly on your forum.
We advise you to reread your code."
We have counted a different number of "{" and of "}". It means your CSS risks to be not valid and will not be posted correctly on your forum.
We advise you to reread your code."
Re: How do you customize the Jump to: menu?
runawayhorses wrote:Kirk when I tried to add the code I got this message "Detected error
We have counted a different number of "{" and of "}". It means your CSS risks to be not valid and will not be posted correctly on your forum.
We advise you to reread your code."
Oh looks like i forgot to add the beginning of that part of the coding.
It should work now, if not i will have to test it one of my test forums
kirk- Forumaster
- Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn
Re: How do you customize the Jump to: menu?
You realise Kirk that you code will affect all select tags not just the 'Jump to' menu?
Such as dropdowns in profiles, in the UCP, preferences, the send PM page, and more.
Got to "home" in on things
Such as dropdowns in profiles, in the UCP, preferences, the send PM page, and more.
Got to "home" in on things
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: How do you customize the Jump to: menu?
So it's up to him, unless you want to write out a better css.
Info added
LOL lg yeah man thats how it's supposed to be for all of them or it would not look right.
When he sets the colors he wants, then it will be in uniform with the other drop downs like you said. but it;s going to match the forum for the colors he wants to select..
If you take away the css and set these in the colors list, it will be the same way anyway for the drop downs, i just gave him this css so he cant change the font color there, But actually there is a place to do that to in the colors list i believe.. so dont even need the css to tell you the truth.. LMAO
But heck if you or someone else wants to write a separate css for each drop down sections then go for it.
Last edited by kirk on May 8th 2012, 7:36 pm; edited 2 times in total
kirk- Forumaster
- Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn
Re: How do you customize the Jump to: menu?
kirk wrote:But heck if you or someone else wants to write a separate css for each drop down sections then go for it.
Yeah but I was under the impression he is only wanting to change the 'Jump to' dropdown.
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: How do you customize the Jump to: menu?
Yeah well looks like that is not working anyway???
there is nothing in the color list for phpbb3, i know i have done it before there for punn and phpbb2, I will fiddle with it see if i can remember how to get it..
info added
Yeah it beats me???
I know i have done it before, but could have been phpbb3 from phpbb.
forumotions phpbb3 versions are not exactly the same, other then that i am sure another staff member will know. it's probably just something silly i am over looking?
I'll check back here in a while then if it is not solved then i will take another crack at it.
My luck by the time i get it someone else will have posted it already...
there is nothing in the color list for phpbb3, i know i have done it before there for punn and phpbb2, I will fiddle with it see if i can remember how to get it..
info added
Yeah it beats me???
I know i have done it before, but could have been phpbb3 from phpbb.
forumotions phpbb3 versions are not exactly the same, other then that i am sure another staff member will know. it's probably just something silly i am over looking?
I'll check back here in a while then if it is not solved then i will take another crack at it.
My luck by the time i get it someone else will have posted it already...
kirk- Forumaster
- Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn
Re: How do you customize the Jump to: menu?
Well I definitely want it for all the boxes so it will look uniform.
I have set the background color of the menu how I want it in the colors section of the admin panel, all I need know is the css to the link colors and/or text colors or both.
I have set the background color of the menu how I want it in the colors section of the admin panel, all I need know is the css to the link colors and/or text colors or both.
Re: How do you customize the Jump to: menu?
Try this selector:
Or if not, just try 'option' on its own.
- Code:
select option {
//rules
}
Or if not, just try 'option' on its own.
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: How do you customize the Jump to: menu?
I havent add any css to the stylesheet yet the background was changed in Display>>Colors and I changed the background color associated with the drop down menu, and that is set.
I need the entire css code that only addresses the drop down menu font colors. thanks
The code there does not have the place to add the color..
I need the entire css code that only addresses the drop down menu font colors. thanks
The code there does not have the place to add the color..
Re: How do you customize the Jump to: menu?
Sorry I thought you knew to add the color:
- Code:
select option {
color: your color;
}
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: How do you customize the Jump to: menu?
LGforum wrote:Sorry I thought you knew to add the color:
- Code:
select option {
color: your color;
}
yup that works
Thanx LG
kirk- Forumaster
- Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn
Re: How do you customize the Jump to: menu?
Ok that works great. One last thing and I'm done. How to you add a hover color to that?.
Re: How do you customize the Jump to: menu?
select option:hover {
color: your color;
background-color: your color;
}
color: your color;
background-color: your color;
}
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Similar topics
» Customize FAQ in Menu Bar
» How to customize a custom menu
» How do i remove 'jump to'
» how to make a jump to widget
» Jump to Unread Message
» How to customize a custom menu
» How do i remove 'jump to'
» how to make a jump to widget
» Jump to Unread Message
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum