-
How to change text on header
nadine_meyerParticipantDecember 7, 2020 at 2:49 pmHi,
how can I change the text on the header?
Thanks,
13 RepliesSanwarul HoqueKeymasterDecember 7, 2020 at 3:07 pmYou can do this from individual homepage settings. Check the video here: https://www.youtube.com/watch?v=tuMZF2WEeEE&ab_channel=ThemeRegion
nadine_meyerParticipantDecember 7, 2020 at 6:10 pmThanks, I found it.
How can I change the space between the letter?
If you check http://freelance-analytics-amsterdam.com/ you can see that below the name I wrote Data Scientist | Data Analyst, but it’s too spread out.
Thanks
nadine_meyerParticipantDecember 29, 2020 at 7:53 pmHi @Adnan Shawkat
How can I change the space between the letters under the Big head line?
If you check https://www.freelance-analytics-amsterdam.com/ you can see that below the name I wrote ‘Data Scientist | Data Analyst’, but it’s too spread out.
Thanks
nadine_meyerParticipantDecember 29, 2020 at 8:46 pmI have used
CSS
h2 {
font-size: 90px !important
}But now the header looks like a mess on mobile…
Sanwarul HoqueKeymasterDecember 29, 2020 at 11:37 pmHi there,
In this case you’ve to do some tricks you know. Here’s the code that you need to use on your custom css instead of overriding
.banner-info h2 { font-size: 90px; } @media (min-width: 768px) and (max-width: 991px) { .banner-info h2 { font-size: 65px; line-height: 65px; } }This way it won’t break the styles or so. Hopefully this would help you fix the issue you’re having.
Regards
nadine_meyerParticipantDecember 30, 2020 at 3:27 amHi Adnan,
thanks for your reply. I tried your code in the CSS, but it still looks like a mess… Even if I remove all the code, it looks the same. Is something broken?
Best,
NadineSanwarul HoqueKeymasterDecember 30, 2020 at 10:25 amHi @nadine_meyer,
There’s nothing wrong with the theme. Where are you actually having issues can you record a loom video maybe showing your issues so that we can have a look at it? So far the above would solve your issues but if it’s still happening we’d need to see exactly what’s happening. Can you share a video using loom which will help us better understanding your situation.
Regards
nadine_meyerParticipantDecember 31, 2020 at 3:23 amHi Adnan,
yes, this is how the banner looks for me:
The letters of the first name and the last name are on top of eachother.
Sanwarul HoqueKeymasterJanuary 2, 2021 at 7:25 pmHi there,
Sorry here you go please update the code that I provided earlier this will resolve the issue so far.
@media (min-width: 992px) { .banner-info h2 { font-size: 90px; } } @media (min-width: 768px) and (max-width: 991px) { .banner-info h2 { font-size: 65px; line-height: 65px; } }nadine_meyerParticipantJanuary 2, 2021 at 8:32 pmHi Adnan,
happy new year,
That worked, thank you!!
nadine_meyerParticipantJanuary 3, 2021 at 4:44 pmHi Adnan,
another question. There is still this big white space between the image and the top of the screen on mobile.
Can I remove that??You can see it here:
SimonKeymasterJanuary 3, 2021 at 5:24 pmUse below css to resolve the issue
@media (max-width: 767px) { .banner-content, #home-banner{ height:400px } .banner-content .banner-info { margin-top: -60px; } }
You must be logged in to reply to this topic.