Hello team,
Very strange things always happen with my website… today is this.
I change the font size in the theme control panel:
https://fotos.subefotos.com/2512dfcab973f7fa07fedbcea5bcba6co.jpg
The changes become effective in the desktop version when the cache is emptied.
https://fotos.subefotos.com/12e894ca1957a5cdaf2b0744d2b6827do.jpg
But, the changes do not apply to the mobile version (I do not use the taddiv-mobile plugin).
https://fotos.subefotos.com/6884f9b1ec7873d1ccbe56952886779do.jpg
¿Why?
Another question: Is it possible to apply lightbox in general to all photos in all publications? Automatically, without having to go one by one. Is that possible?
Thanks
-
This topic was modified 7 years by
Jose.
Hi,
The font size and line height seems to have a defined value in the theme stylesheet when below a certain width
– https://www.screencast.com/t/RPP3lhkkMZAq
So the setting from the theme panel will apply only above that width, while below it it will always be of the specified values. If you do not want this, either remove this condition from the theme stylesheet or use a code to override it
– https://www.screencast.com/t/neQ5dXofg9
@media (max-width: 1018px) {
.td-post-template-1 article .td-post-header header .entry-title {
font-size: 25px;
}}
Maybe this forced font size was intended for some reason, I could make a note of it and pass it along for investigation.
Regarding the lightbox, once the general setting is activated it should affect all the post images
– https://www.screencast.com/t/w5vvwCLzA
But when adding the image in the post I think the link has to be set manually
– https://www.screencast.com/t/19sqmUxlo
Thanks
Thanks Simion,
Yes, I have this option activated
https://fotos.subefotos.com/8da7470102ed42bf94fde4ecaba2429fo.jpg
But my photos are not linked to the multimedia file…..
https://fotos.subefotos.com/22f9cc4850a83f3402fd6051fdff510co.jpg
My problem is that I have more than 1.000 published photos…. I could be a lot of days changing this manually. Is there any way to make an automatic change for all published images?
Cheers
Hi @Simion C,
I’ve detected another error. The text size is also not respected if you use the td-mobile plugin.
If I select content size 18px, and use the td-mobile plugin, the text size is automatically changed to 15px.
I haven’t been able to find the source of the problem. But it would be great if you can fix these small problems in the next updates.
thank you
Hi,
That happens because the mobile them has it’s own stylesheet and fixed values
– https://www.screencast.com/t/WBGH4CAucxA
It has no font settings where this could be changed, so this could only be modified in the mobile stylesheet directly or with CSS.
There would be a solution to this, it will require a cloud template and deactivated mobile theme plugin. Using cloud post templates font sizes for the post title can be set per device, so for example
– https://www.screencast.com/t/wCxG3jG9
– https://www.screencast.com/t/oYMM5mnc2
Thanks