Change the menu position and other thins
-
-Sorry for my poor english-
Hi, I want to do 3 changes in my site, but I don’t know how…1) It’s possible to change the menu position?
2) How can I remove the search bar? (I tried a little things, but didn’t work)
3) Can I change the size of the slider category?I’m using the BROADSHEET theme and there’s a picture of what I want:
ExampleThe blog I need help with is: (visible only to logged in users)
-
1) It’s possible to change the menu position?
That is definitely possible. Here is one possible way to do it:
.menu-primary { position: absolute; top: 35px; } .header-image { padding-top: 38px; }If you move the menu to the top like that, I would also suggest hiding the search box in that same area:
.branding .searchform { display: none; }If you would like to move it to a different location, try adjusting the CSS example from above to see if you can find a way to move it. Here is a guide about absolute positioning which should be helpful to you:
-
2) How can I remove the search bar? (I tried a little things, but didn’t work)
Aha. I got that one covered above. Here it is again:
.branding .searchform { display: none; }Here’s how I figured out what selectors to use:
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/ -
3) Can I change the size of the slider category?
Do you mean the post meta data that shows up below each post title in the slider, such as “BY BIEL ON 12 DE FEVEREIRO DE 2015 • ( DEIXE UM COMENTÁRIO )” ?
You can increase the size of text like that using CSS like this:
.postmetadata { font-size: .75em; }Adjust the .75em number as needed.
- The topic ‘Change the menu position and other thins’ is closed to new replies.