Home › Forums › SEA WordPress Theme › Blog Customization
- This topic has 22 replies, 3 voices, and was last updated 2 years, 2 months ago by
SeaTheme.
-
AuthorPosts
-
January 8, 2024 at 11:46 am #30376
Hi is there any way to customize blog like 4-grid or something else because it’s only 1 view width blog each right now and couldn’t find anything else?
January 9, 2024 at 1:22 am #30380Hi there,
Welcome to SeaTheme forum.
Please try to config the default archive(blog) page via theme option(check sccreenshot).
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookJanuary 18, 2024 at 12:24 pm #30396Hi thanks for help,
Need help with something else about the blog.
Blog excerpts are done automatically but number of words are random and because of this title and excerpts are not symmetrical. Say i have a 1 line title with 10 lines of excerpt and 3 lines of title and 5 lines of excerpt, i need it to be so that while top of the titles are aligned, also top of the excerpts should be aligned and be exact number of lines. This is kinda important for me and it’s kinda urgent. Could you help with that i couldn’t find that kind of setting in that link.
Thanks,
Regards,January 29, 2024 at 2:14 pm #30434Hello any updates on the relevant post about excerpts?
Regards,
January 30, 2024 at 2:26 am #30437Sorry for the later response. I cannot guarantee that I fully understand your requirements. If you want the number of lines in the title and excerpt to be the same, the additional text after the title and excerpt will be displayed in a truncated manner using ellipses (…), right? If that’s the case, how many lines do you want the title and excerpt to display, respectively?
ps: Ideally, if you could provide me with the link to your blog page, I can better understand your requirements and provide you with a more accurate solution. Thanks.
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookJanuary 30, 2024 at 6:44 am #30438Hi,
No all i want is title to be x numbers of rows(if it’s choosable better if not 4 lines) and then if it overflows … ends it, and for excerpt same thing choosable better but if not 7 lines maybe?
Because the blog lines are coming random one is short one is long it’s hard to adjust manually. Looks like an ai rewrite in 50 words thing but that’s not necessary just hiding overflow after some rows should be enough.
This is the page: http://www.aksanlaw.com/anasayfa/blog/
and in the second page: http://www.aksanlaw.com/anasayfa/blog/page/2/ you’ll see what i’m mentioning. I tried doing it manually but i’m not sure doing that will be responsive enough.
Best Regards,
January 30, 2024 at 11:36 am #30439Hi,
Please paste the custom CSS code to “Appearance > Customize: Additional CSS”:
@media (min-width: 768px){ .archive-tit, .arvhive-excerpt { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; text-overflow: ellipsis; } .archive-tit { -webkit-line-clamp: 4; /* lines for title */ } .arvhive-excerpt { -webkit-line-clamp: 7; /* lines for excerpt */ } }
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookFebruary 27, 2024 at 1:07 pm #30528This reply has been marked as private.February 27, 2024 at 1:43 pm #30529This reply has been marked as private.February 28, 2024 at 1:43 am #30530Hi,
1. Do you want the bottom of the title section to be aligned? As shown in the picture.(click)
2. I checked the homepage, there does be BG color on Sticky header. Did you fix it?
3. Please use the plugin Loco Translate, refer to https://doc.seatheme.net/theme/art/translate-for-art/translate-a-wordpress-theme-by-loco-translate/
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookFebruary 28, 2024 at 7:11 am #30531This reply has been marked as private.February 29, 2024 at 2:44 am #30538Welcome
1.
Update the above CSS:
@media (min-width: 768px){ .archive-tit, .arvhive-excerpt { font-size: 25px; min-height: 130px; display: flex; align-items: flex-end; flex-direction: column; } .inn{ display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; } .arvhive-excerpt { min-height: 160px; font-size: 17px; } .arvhive-excerpt .inn { -webkit-line-clamp: 7; } .arvhive-excerpt p { margin:0; } }Add the JS via a custom js/css plugin(refer):
jQuery(document).ready(function($) { $('.archive-tit, .archive-excerpt').each(function() { if ($(this).children('.inn').length === 0) { $(this).wrapInner('<div class="inn"></div>'); } }); });2. Add the custom CSS:
.bm-enable-univer #header { background-color: #fff; } body:not(.show_mobile_menu).bm-enable-univer.bm-enable-univer-textcolor #header * { color: #333; }
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMarch 9, 2024 at 1:04 pm #30560Hi,
Yes it works but it’s not aligned perfectly. Speaking about the blog part.
it should be screenshot like this.
Also is it possible to make a menu menu like this. Couldn’t see it in the options but is it possible to be added to the theme?
Regards,
March 10, 2024 at 2:26 am #30562Hi, welcome
1.
Update the above CSS:
@media (min-width: 768px){ .archive-tit { font-size: 25px; min-height: 130px; display: flex; justify-content: flex-end; flex-direction: column; } .inn{ display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; } .arvhive-excerpt p { margin:0; } }2. Do you mean to add a full-width background color?
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMarch 15, 2024 at 10:01 am #30580Hi,
1.Yes like this thank you, there is one problem left. Excerpts are still more than 7 lines.
I’ve added the js part and my custom css is as follows:
@media (min-width: 768px){ .archive-tit, .arvhive-excerpt { font-size: 25px; min-height: 130px; display: flex; align-items: flex-end; flex-direction: column; } .inn{ display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; } .arvhive-excerpt { min-height: 160px; font-size: 17px; } .arvhive-excerpt .inn { -webkit-line-clamp: 7; } .arvhive-excerpt p { margin:0; } .archive-tit { font-size: 25px; min-height: 130px; display: flex; justify-content: flex-end; flex-direction: column; } .inn{ display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; } .arvhive-excerpt p { margin:0; } }So -webkit-line-clamp: 7; is there but it’s not working. I’m not sure if i’ve updated the css wrong way, this is the latest one.
2. Not just the background but more like a menu that opens on hover having a rectangular shape with parts like:Menu
Thank you for your help very much by the way,
Best Regards,
March 15, 2024 at 11:43 am #30581Welcome
1. please update the JS codes(here) as:jQuery(document).ready(function($) { $('.archive-tit, .arvhive-excerpt').each(function() { if ($(this).children('.inn').length === 0) { $(this).wrapInner('<div class="inn"></div>'); } }); });2. I don’t quite understand your needs, because your website’s sub-menu doesn’t have so much content; do you want a menu background like this? Please check the screenshot.
If not, it’s best to also give a picture like this, thank you.
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMarch 18, 2024 at 6:55 am #30588Hi,
I think first question is resolved.
But got a problem with the menu one.
Menu seems this way in :1366×768 resolution.
And yes basically can it look like this: desired menu look
Desired this way because it could have 10 to 20 parts each in a hamburger way and may be a bit long of a text.
Right now it looks like this: menu now
Thank you for your help a lot again,
Regards,
March 18, 2024 at 7:11 am #30589Forgot to say this but i’ve also tried removing my additional css part and check it again if it does that and it still does.
March 19, 2024 at 1:14 am #30592Hi,
To fix ‘Text wrapping issue for the top-level menu’, please try to reduce the spacing of menu item on theme option, or via the custom Css:body:not(.navi-justified):not(.navi-corner) .navi-header > div > ul > li { margin-left: var(--hSpacingHeadNaviItem, 20px); }For this sub-menu layout, it cannot be achieved through theme options or simple code. It requires relatively complex customization work, and I’m sorry, it is beyond the support of free services.
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMarch 19, 2024 at 12:26 pm #30598This reply has been marked as private.March 20, 2024 at 1:41 am #30606This reply has been marked as private.April 2, 2024 at 9:01 am #30645Hi,
Is it possible to make hamburger menu in 1366px because it still folds.
Regards,
April 2, 2024 at 11:53 am #30646Please add the Custom CSS:
@media (max-width: 1365px) { .responsive-ux .navi-header,.responsive-ux header .hidden-mobile { visibility: hidden; pointer-events: none; } .responsive-ux.show-menu-item-mobile .navi-trigger-out,.navi-show:not(.ux-mobile) .navi-trigger-out { display:block!important; } } @media (min-width: 1366px) { .responsive-ux.show-menu-item-mobile .navi-header, .responsive-ux .menu #navi_wrap ul:not(.sub-menu) { display: none; } }
Regards!
SeaTheme – FAQs – WordPress Customization – Facebook -
AuthorPosts
- You must be logged in to reply to this topic.
