Home › Forums › Automattic › Simfo › Post Date/Search on Grid
Tagged: Post Meta, search widget, simfo
-
AuthorPosts
-
Christy “Rockin'” RosanderHello,
1. I would like no meta on individual blog posts and dates still remaining on the front grid page. Right now the following CSS removes both the meta from posts and the grid page. Is there a way to do this?.entry-meta {
display: none;
}2. I would also like to add a Search widget to the top left under the slider of the front page. Right now when I add the search widget it shows up in the middle.
Thank you.
The blog I need help with is ladyonarock.wordpress.comDecember 5, 2013 at 7:26 pm #1439951. I would like no meta on individual blog posts and dates still remaining on the front grid page. Right now the following CSS removes both the meta from posts and the grid page. Is there a way to do this?
.entry-meta {
display: none;
}
This would restrict the above CSS to single posts only:
.single .entry-meta {
display: none;
}I’ll answer #2 separately.
December 5, 2013 at 7:34 pm #1439992. I would also like to add a Search widget to the top left under the slider of the front page. Right now when I add the search widget it shows up in the middle.
Right now it looks like you have one text widget in the front page widget area containing social-media links, did you want the search widget to go to the left of that existing widget? Do you mind adding it there so I can take a look? Thanks!
December 5, 2013 at 9:03 pm #144007
Christy “Rockin'” Rosander#2 I have placed a Search widget at the top of the front page. The Search shows up in the middle and the social media text widget is at the left.
December 5, 2013 at 9:06 pm #144008
Christy “Rockin'” Rosander1. Worked perfectly. Just what I wanted. Thank you!
December 5, 2013 at 9:12 pm #144010Is your goal to just swap the placement of the search box and text widget, so that the search box is in the spot where the text widget is now, and vice versa? If so, you just need to click and drag the search widget below the text widget, like this:
That will swap their locations.
If I’ve misunderstood your aim, would it be possible to explain in a little more detail what you’re after, or even show me a little sketch or mockup so I can help you achieve it? Thanks!
December 5, 2013 at 10:09 pm #144013
Christy “Rockin'” RosanderI would like the top widgets on the front page to both be left aligned. Right now if you add more that one, one is left aligned and one is in the middle. Switching them does not help.
Also, is there a way to center the widget titles in the footer widget sections. Right now they are by default left aligned. Thank you again for you help.
December 6, 2013 at 4:09 pm #144032I would like the top widgets on the front page to both be left aligned. Right now if you add more that one, one is left aligned and one is in the middle. Switching them does not help.
If you’re trying to place both widgets on top of each other like this:
Then adding this to your custom CSS should do the trick:
#search-3 {
margin-left: 0;
}Also, is there a way to center the widget titles in the footer widget sections. Right now they are by default left aligned.
This should do it:
.footer-widgets .widget-title {
text-align: center;
}Could you please start a new thread for any additional questions beyond the ones you’ve already asked here? It’ll help keep this thread from getting too long, and also help others find relevant threads when searching the forums. Thank you!
December 6, 2013 at 4:45 pm #144034
Christy “Rockin'” RosanderThank you for your help. Love the changes. All worked.
December 6, 2013 at 4:54 pm #144041Great! I’m marking this thread as resolved and closing it, but feel free to start a new one if you need help with anything else.
-
AuthorPosts
The topic ‘Post Date/Search on Grid’ is closed to new replies.