How Can I position this element so it will stay stuck to the top right corner?
I'm working off of a wordpress theme, and I can't seem to get the positioning of the Search开发者_如何学Go Search Bar to be positioned in the desired area. Is this not something I can achieve with positioning??
you have the Css like this:
#searchform {
position:absolute;
top: 60px;
left: 930px;
}
you need to change the left value to something like 880px
精彩评论