BuddyBoss Home – Web Support Forums Themes Boss. theme my login logofont text title is pacifico how do i change it

Viewing 15 posts - 1 through 15 (of 22 total)
  • Question

    #42035
    @bigokilla

    my login logo font text title is pacifico how do i change it in the child theme functions where do i override the text font in editor

    Answers

    #42037
    @style960

    @bigokilla Dashboard > Appearance > Customize > Fonts > Site Title.

    #42039
    @bigokilla

    @style960 thanks for the response but i know how to change it their i actually did that already but my login page font is still in pacifico font but my home page is palatino linotype font i want to match both font to palatino linotype.
    when changing the title logo text font in Customize > Fonts > Site Title. it dose not effect the login page im running the boss child theme.

    #42041
    @style960

    @bigokilla You’re right, I misunderstood the question. Try adding this to your functions.php file in the Boss child theme:

    function my_login_logo() { ?>
        <style type="text/css">
            .login h1 a {
                font-family: 'Palatino Linotype' !important;
            }
        </style>
    <?php }
    add_action( 'login_enqueue_scripts', 'my_login_logo' );

    See WordPress codex here for reference – https://codex.wordpress.org/Customizing_the_Login_Form

    #42057
    @bigokilla

    worked perfectly thanks so much i added it under custom functions on the child theme

    #42123

    Alyssa
    Participant
    @alyssa-buddyboss

    Thanks for the help on this paul.

    @bigokilla
    please let me know if you need any further help on this issue.

    #42132
    @bigokilla

    would you know how to disable the comment box on some pages its on every last page i create.

    #42167

    Alyssa
    Participant
    @alyssa-buddyboss

    @bigokilla this is a WordPress setting in your dashboard>Settings>discussion
    It is also on every page in Dashboard>Pages>Edit
    It may be hidden in Screen Options in the top right corner

    #43066
    @bigokilla

    so i have a issue where i implemented an adsense code into my website but the ad are not viewable on mobile devices. anyhelp

    #43109

    Alyssa
    Participant
    @alyssa-buddyboss

    @bigokilla I believe Google has disabled normal ads on mobile devices. I think you may need a separate Google code for mobile devices. You will need to contact Google to confirm.

    #49459
    @bigokilla

    after i updated my boss them i notice my text logo is a different font from desktop please help.

    #49575
    @vapvarun

    Hi @bigokilla
    You can use the following codes to set you admin login page font
    just need to replace the font family parameter with the same family which you want to use
    You can add these codes to child theme functions.php

    
    function my_login_logo() { ?>
        <style type="text/css">
            .login h1 a {
                font-family: 'Palatino Linotype' !important;
            }
        </style>
    <?php }
    add_action( 'login_enqueue_scripts', 'my_login_logo' );
    

    Regards
    Varun Dubey

    #49604
    @bigokilla

    Let me make sure I’m specific with my exact problem so first problem I notice after update boss theme this applies when viewing on mobile devices (device being used was iPhone 6) so when viewing my website in portrait portrait mode (using safari browser) my font for my website logo are different then when viewing on desktop I don’t know why this happens second time it happens I wrote about it before occurs usually after an update and my second problem is my slide are much bigger on mobile use to me perfect before update could see the entire slide now I only see half as it’s zoomed all in I have screen shot below and third problem not sure if it’s just my phone but when in landscape mode When I scroll all the way down and click on view as desktop using (Safari & chrome browser) theirs an all white page no content can’t see anything major bug need to be fixed please get back to me asap thank you….the only mobile browser I tested that didn’t show this white page was (puffin browser)

    #49970
    @bigokilla

    @vapvarun @tjchester @style960 can one of you guys help me please and answer my question above this comment.need a fix asap

    #49979
    @vapvarun

    Hi @bigokilla I have checked your website on various browsers and in iphone at landscape mode also https://scriltech.com/, It seems fine to me

    For the Font Family you can change it from Boss theme option panel or by custom css, just inspect the corresponding element and use your desired font family, if it seems little typical just let me know for which section you need to change the font family it will provide the corresponding css.

    For the Slider it have know issue we will push the next update within 1-2 day, just need to test all the edits and it will fix those slider issues.
    Sorry for the inconvenience.
    Regards
    Varun Dubey

Viewing 15 posts - 1 through 15 (of 22 total)
  • The question ‘my login logofont text title is pacifico how do i change it’ is closed to new replies.