Hi,
I have a few examples where I can’t seem to change the text’s font style and size. Mostly with titles. I’m checking with “whatfont” extension to make sure, and there’s very surprising settings that have never been set by me in the backend. Also cleared cache in shop and did control + F5.
I basically have 2 fonts that I want to use: PT Sans (in titles) and Georgia (in body). I checked the font setting repeatedly in backend to no avail.
Issues:
– Blog Article titles (posts are working well tho)
– In composer (on homepage specifically): homepage blog post, image blocks TITLE incorrect
– In backend text editor (when writing posts) I see old settings, not the font I see in the frontend
– Footer social media text (open sans?)
– in category pages (ex. https://www.dimitrovadam.hu/elet-tudas/): the category body text, article titles (with thumbnail, and in the list below the thumnbails too)
Apart from this the only issue I have is that in 1) Mozilla 2) Chrome incognito mode the logo disappears from the menu, and only the top menu appears. Sometimes it appears.
-
This topic was modified 8 years by
Dimitron.
Hi,
The theme has font settings in the theme panel for most elements
– https://forum.tagdiv.com/font-customization/
So you can change the font and font properties there for the elements you wish. For example the font of the article title for the homepage post element you mention, can be changed here
– https://www.screencast.com/t/lo4zrqe6
– https://www.screencast.com/t/rkiKZXH05
– https://www.screencast.com/t/wWcH0tU3jPsH
Each module has a corresponding font setting. You can check what font is currently loaded for a particular element, with the browser inspector for example
– https://www.screencast.com/t/zJJqIquzo1C
Regarding the logo, from what I can see there is no problem. Tested on Chrome incognito and Firefox browser
– https://www.screencast.com/t/9jcfDwVDvG
– https://www.screencast.com/t/3Y6Sv7Uj
Once set in the theme panel the logo should display regardless of browser used
– https://forum.tagdiv.com/logo-favicon/
Thanks
Hi,
Thank for your reply.
I managed to resolve the logo issue, I think it was something with making the logo sticky. Right now it’s not sticky, and it’s displaying correctly.
Regarding the fonts, as I said, I tinkered a lot with the backend font settings. I wouldn’t write if I hadn’t checked.
For example, on the current frontpage, for the the life of me, I can’t find which one is changes the image titles (not the homepage post). It’s set as 46 px and 37px line height, I cannot nothing that matches that. This is just one example.
Other Examples:
– Homepage > Image block titles
– Blog post >Title
– On Category page > title and body
– in post editor (in backend) the font is different vs. in preview
Maybe it in the modules MX etc. part where I can find my answers, but they’re not marked what does what.
So I’m still stuck.
Hi,
Let’s take them one at a time. On the homepage from what I can see, currently there are no theme elements
– https://www.screencast.com/t/ChCZY8Q7Lb
So any font there in the page content cannot be changed through theme settings.
Next the post title font on the module (blog page)
– https://www.screencast.com/t/dLrdx08Uxe
The font loaded I believe is what you wanted, it seems to be the general font set here
– https://www.screencast.com/t/mS0sxl2iQE
That general font setting is overridden by the individual font settings, by module (that is module 12 you are using)
– https://www.screencast.com/t/Pynj9REG3
In the post page the article title seems to be set in general as well
– https://www.screencast.com/t/5il52AwRj
– https://www.screencast.com/t/stwPlUMoKBPr
Each individual post template can have it’s own font for the article title in the post page. That post template is post template 10, so it would be here
– https://www.screencast.com/t/n5uPXKgGL
On category page, the page title font settings are here
– https://www.screencast.com/t/EStYBmOitNsm
If I misunderstood or forgot something, please specify exactly which elements you are referring to, and I will take a look.
Thanks
Thanks! I haven’t had time to review you post yet, but another question surged:
1) On posts and pages, if I remove the sidebars, how can I restrict the width of the content? The width without sidebars is too much and makes the content less appealing. The ideal width would be same as the width when a sidebar is added. Is there a custom code I could put in to resize the text area?
Thanks!
The post content width is fixed, when a sidebar is used it is 696px in width, when no sidebar is used it will occupy the whole theme width.
There is a padding option that can be used when you do not use a sidebar (or when you use a sidebar), this will reduce the post content
– https://www.screencast.com/t/T3j7UsFKPvR
This is a demo post that does not use a sidebar and has paragraph padding
– https://demo.tagdiv.com/newspaper/td-post-five-things-you-may-have-missed-over-the-weekend-from-the-world-of-business/
Thanks
This is a topic where some suggestions are mentioned, to use custom code in order to apply a padding on the post content elements for all posts at once
– https://forum.tagdiv.com/topic/post-width-for-full-width/
Hi,
Regarding the fonts, I managed to set them up mostly with a few exceptions.
In the homepage > blog the excerpt isn’t changing. I found that I can modify it via modules and blocks general > excerpt, but only the boldness. Not the font size and line heigh or font style.
In the comment section: the comments title (HOZZÁSZÓLOK A CIKKHEZ) a the line below (when logged in) and the box/field content. I can’t seem to change those via the “comment” font settings.
Hi,
Regarding the comments, you could change the font for all the elements in it with custom code, like this
– https://www.screencast.com/t/2NdIMesS
Try it out, enter it in Theme panel->Custom CSS
.comments .comment-reply-title,
.comments .logged-in-as {
font-family: Georgia, Times, “Times New Roman”, serif;
}
For that module excerpt use a code like this
- https://www.screencast.com/t/jDtx197rxsdj
.td_module_12 .td-excerpt {
font-size: 21px;
line-height: 37px;
}
Thanks