Jahhhd
-
Posts
25 -
Joined
-
Last visited
Reputation Activity
-
Jahhhd got a reaction from Ziggy in Does Version 7.1 support a Search Bar/Icon for the site's header?
I just found this and implemented it on my site.
-
Jahhhd got a reaction from JoannaR123 in Does Version 7.1 support a Search Bar/Icon for the site's header?
Would it be possible to do something like this but have it pop up as a lightbox when the link is clicked, rather than bring you to a new page specifically for the search?
-
Jahhhd reacted to theresa.southern in Summary Block for Blogs: How to hide current post?
@SanitiseThis
I have one summary block showing a single blog article that I have tagged as FEATURED. Then below it, I have another summary block with 30 items. I did not want to repeat the FEATURED post in that block. It is not the most elegant or perfect solution but I have simply told the first item in the specific summary block not to display. (In this case, it worked for me because I plan to always have the most recent blog article as the featured article - this would not work if the featured article was not the most recent. I know this is not the best but maybe it will inspire some ideas. Half of this stuff is being creative with the CSS LOL)
Example:
#block-yui_3_17_2_1_1594082530518_15247
.summary-item:nth-child(1) {
display: none;
}
-
Jahhhd reacted to Creativore in Summary Block for Blogs: How to hide current post?
OK, I nearly cried then because I thought it had worked. It does work on the latest article but not the previous ones. It actually takes the latest article out of the other summary blocks in the previous articles. Does that make sense?
You are still bloody amazing though. I'm so grateful for your efforts.
-
Jahhhd reacted to tuanphan in Add padding to drop down nav
Add to Home > Design > Custom CSS .header-nav-folder-item a {
line-height: 1.9em;
} -
Jahhhd reacted to tuanphan in How replace "Older Posts >" in 7.1 ?
Add to Home > Design > Custom CSS
/* remove padding all blocks */ .sqs-block { padding-bottom: 5px; padding-top: 5px; }
-
Jahhhd reacted to tuanphan in How replace "Older Posts >" in 7.1 ?
Add to Home > Design > Custom CSS
/* Newer posts */ nav.blog-list-pagination .prev-label { visibility: hidden; } nav.blog-list-pagination .prev-label:before { visibility: visible; content: "New prev text"; } /* Older posts */ nav.blog-list-pagination .next-label { visibility: hidden; } nav.blog-list-pagination .next-label:after { visibility: visible; content: "new next text"; }
-
Jahhhd reacted to tuanphan in Quote Blocks on a 7.1 Blog
Add to Home > Design > Custom CSS
blockquote { border-left: 1px solid green; padding-left: 10px; }