- This topic has 13 replies, 3 voices, and was last updated 4 years, 1 month ago by
David.
-
AuthorPosts
-
May 1, 2019 at 12:48 am #885181
Hans
Hi, As I’m customizing the last bits of my website, first of all my compliments for this great theme. For the first time in years I am happy with my website. It looks exactly how I wanted it and with the use of free themes this hasn;t been possible until now. But, there are still a few things I would like to cusomize and I can;t seem to find how to do that.
1. When you look at the labels for the browser when visiting my site. When visiting the results of tags is adds ‘archieven’ to it. So it show for example ‘archieven ambient | Luistertips ‘where I would like to show ‘Ambient | Luistertips’ only. Can that be fixed?
2. It seems that when you visit the different pages, that ‘start’ and ‘contact’ are a bit wider then the other pages. Is there something I can do to fix that?
3. I use the contained version of the different area’s. It gives a very nice style to the whole. Only, I would like to fill up the last container in the right sidebar with a white bacjground to the bottom of the page. So it would look more as a whole.
Thanks in advance.
HansMay 1, 2019 at 8:28 am #885710Tom
Lead DeveloperLead DeveloperHi there,
1. You would need an SEO plugin like Yoast SEO or the SEO Framework. They will allow you to adjust the structure of your titles.
2. Not too sure what you mean here. What’s wider?
3. Give this CSS a try:
.site-content { display: flex; } .inside-right-sidebar { background: #fff; height: calc(100% - 30px); }
Let me know 🙂
May 1, 2019 at 11:27 pm #886170Hans
Hi Tom, Thanks for your reply.
1. I’ll check that.
2. I mean the width of the body on different pages. On two pages it seemds the width is larger.
3. This css doesn’t work in code snippet?Regards,
HansMay 2, 2019 at 3:27 am #886333David
StaffCustomer SupportHi there,
2. I can’t see a difference in the page width between those pages. You sure its not just optical due to the different body background?
3. CSS needs to be added in either the Customizer > Additional CSS or in your child theme style sheet.
May 2, 2019 at 3:37 am #886339Hans
Hi David,
It’s not that much of an issue. Before this my background was white everywhere and there I could notice it.
The css works! Thanks for that. But now I miss the break between the two area’s on the right sidebar. Any suggestions how to solve that? If not. I’ll leave it like this.
Kind regards
HansMay 2, 2019 at 3:50 am #886345Hans
And again. Thanks a lot for you support (you also Tom). And for the quick responses. Very happy with the result of converting my website from a standard twenty seventeen theme to this great theme.
May 2, 2019 at 3:59 am #886354Hans
Is it also possible to add a css to the website for automatically filling the content part? the same as filling the sidebar on the right? So that in all time left and right are the same height?
May 2, 2019 at 4:05 am #886365David
StaffCustomer SupportSo would you want the second widget to extend to the very end of the page? Or another empty block to fill that space?
May 2, 2019 at 4:15 am #886379Hans
I now have three widgets at the right sidebar. The third one should be filled up till the end.
The css code you supplied before for the right sidebar, is there also a solution to do the same for the content?
May 2, 2019 at 4:28 am #886388David
StaffCustomer SupportSo swap the CSS that Tom gave you for:
@media (min-width: 768px) { .site-content { display: flex; } .inside-right-sidebar { display: flex; flex-direction: column; height: calc(100% - 30px); } .inside-right-sidebar .widget:last-child { flex: 1; } }
May 2, 2019 at 4:33 am #886400Hans
Wow. Brilliant. That works fine. Looks beautiful.
Last question:
Is there also a solution to do the same for the content? For instance when I search for an item that gives no results to fill up the content area till the footer?
Thanks a lot
May 2, 2019 at 7:11 am #886689David
StaffCustomer SupportThat’s really tricky to do, and could create problems with the changes we made to the sidebar….
May 2, 2019 at 8:01 am #886754Hans
Ok. Then…let’s not do that. Thanks a lot for your support.
Hans
May 2, 2019 at 8:01 am #886755David
StaffCustomer SupportGlad we could be of help.
-
AuthorPosts
- You must be logged in to reply to this topic.