-
Closed
-
Hi, is it possible to get the read more button on posts page to the same hight as its neighbor? Or a fixed width of the blog post boxes?
Example
The topic Read more button to the same height is closed to new replies
Hi,
The position of your readmore button depends on your amount of content.
Therefore you can provide a minimum content height and your buttons will align
.home .entry-content {
min-height: 460px !important;
}
Thank you
This is hot :). Working perfectly. Thank you very much.
You are welcome!
Hi, sorry for reopen. How can i get this to work at category or search result pages? I replaced .home with other names but i takes no effect.
Hi Pako,
The CSS code should if you replace .home (page id) with the search result and category page id. For example, for the search result, the page id is .search-result. Kindly share the link to the category page so I can provide you with the correct page id and appropriate CSS code.
Let me know.
I tried with
.search-result .entry-content {
min-height: 460px !important;
}
but no correct result if i start es search. Is misaligned.
Here are the Categories…
Hi,
The HTML structure for search, category, archive are slightly different ( I don’t know why 🙂 )
Note: Please keep the previous code and add the following in Theme Options -> Custom CSS
.category .entry-content p, .search .entry-content p, .archive .entry-content p {
height: 170px !important;
}
Thank you.
The topic Read more button to the same height is closed to new replies