enlarge link for phones
3 posters
Page 1 of 1
enlarge link for phones
hi all.
I want to increase it for phones (I have a web version for phones on the forum) this link is below, here is the code that I use, but it doesn’t work
Notabene:
I now have Windows 7, and many problems with the forum have disappeared. all is good. Thank
I want to increase it for phones (I have a web version for phones on the forum) this link is below, here is the code that I use, but it doesn’t work
- Code:
@media screen and (max-width: 550px) {
#statk1 a {font-size: 72px;}
}
Notabene:
I now have Windows 7, and many problems with the forum have disappeared. all is good. Thank
Last edited by poesia-verses on Sun 5 Nov - 18:51; edited 1 time in total
Re: enlarge link for phones
you can not increase the font size that much without changing the width of the element cause the text will vanish
also you want this code to be applied in the mobile version? cause the desktop version is the same to all devices
also you want this code to be applied in the mobile version? cause the desktop version is the same to all devices
Re: enlarge link for phones
Coucou,
you don't have any element with ID
, so of course the code does not work, but you have a
class element
This CSS will work instead:
Also, please note that you may need to change the parent element style attribute, in particular the dimension of the width line
you don't have any element with ID
|
|
This CSS will work instead:
- Code:
@media screen and (max-width: 550px) {
.kstat1 a {
font-size: 72px;
}
}
Also, please note that you may need to change the parent element style attribute, in particular the dimension of the width line
- Code:
<div class="kstat1" style="position:fixed;
z-index:1800;
height:18px;
width:122px;
bottom: 0px;
right: 47px;
line-height: 98%;
">
TonnyKamper and poesia-verses like this post
Re: enlarge link for phones
The web version(for phone) is not the same as narrowing the browser window; when narrowing, my script works.
Re: enlarge link for phones
poesia-verses wrote:The web version(for phone) is not the same as narrowing the browser window; when narrowing, my script works.
The layout changes based on the size and capabilities of the device... based on different screen sizes ...based on different device features and so on..
this is why we created the Modern version https://help.forumotion.com/t161760-new-the-modernbb-version-of-forumotion-forums-is-now-responsive?highlight=ModernBB
TonnyKamper likes this post
Re: enlarge link for phones
poesia-verses wrote:The web version(for phone) is not the same as narrowing the browser window; when narrowing, my script works.
Have you tried using the solution I provided?
TonnyKamper likes this post
Re: enlarge link for phones
Can you try with this instead?
You may also need to add this to solve the issue of the parent I was telling you before:
- Code:
@media screen and (max-device-width: 550px), screen and (max-width: 550px) {
.kstat1 a {
font-size: 72px!important;
}
}
You may also need to add this to solve the issue of the parent I was telling you before:
- Code:
@media screen and (max-device-width: 550px), screen and (max-width: 550px) {
.kstat1 {
width: fit-content!important;
}
}
Re: enlarge link for phones
Problem solved & topic archived.
|
Similar topics
» Remove Enlarge/Reduce image link
» enlarge image
» My forum not visable on mobile phones
» Size of some text in portal is too large when view on mobile phones
» How do I create a link where you hover over the link and it pops up some kinda text?
» enlarge image
» My forum not visable on mobile phones
» Size of some text in portal is too large when view on mobile phones
» How do I create a link where you hover over the link and it pops up some kinda text?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum