JABRONI Well-known member Oct 24, 2013 #1 I need to move it down on forum_view specifically because it covers the New Thread button, but I can't figure out how. I thought that, .forum_view #QuickSearch { margin-top: number; } would work, but it didn't. Anyone know how to fix this?
I need to move it down on forum_view specifically because it covers the New Thread button, but I can't figure out how. I thought that, .forum_view #QuickSearch { margin-top: number; } would work, but it didn't. Anyone know how to fix this?
Jeremy in memoriam 1991-2020 Oct 24, 2013 #2 #QuickSearch is not a descendent of .forum_view, which is why your CSS fails. It may be easier to move the New Threads button via CSS than the search bar. Upvote 0 Downvote
#QuickSearch is not a descendent of .forum_view, which is why your CSS fails. It may be easier to move the New Threads button via CSS than the search bar.
M Matthew Hawley Well-known member Oct 24, 2013 #3 Code: #searchBar { margin-top: 50px !important; } Replace 50 with whatever number you want. Upvote 0 Downvote
Jeremy in memoriam 1991-2020 Oct 24, 2013 #4 That doesn't accomplish what he wants to do. Although, I may have a hacky solution for you in a bit. Upvote 0 Downvote