Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #32879
    drlapco
    Member

    Hi, Thank you in advanced for responses

    I would like to know, as im having trouble, adding a second or even third line to the tagline/site description, i mean,under the title, there is space for some words, how do i add, as custom css or edit the files another line?

    Thank you

    #32883
    drlapco
    Member

    im using simple catch, btw

    #32904
    Sakin
    Keymaster

    @drlapco: Sorry I am not so clear about your question. But look like you are talking about the width of the Site Description/ Tagline. If so then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #site-description { max-width: 290px; }

    If you are talking about different thing. Then please explain in reference with your site URL.

    #32930
    drlapco
    Member

    Sorry for the confusion, im talking about, in my site drlapco.com, under the title, its says ear nose and throat specialist, i would like to add, as that same item the phone mumber and address of the doctor, like make that text break a line and continue. Tha k you

    #32965
    Sakin
    Keymaster

    @drlapco: When I check in your site, it under construction. So, I cannot check in.

    #32975
    drlapco
    Member

    Im sorry, i have disabled it, thank you

    #32976
    drlapco
    Member

    Im sorry, i have disabled it, you can now see it
    thank you

    #32981
    Sakin
    Keymaster

    @drlapco: There is not option to do that. The site description is from your “Settings => General” tagline text.

    #32983
    drlapco
    Member

    Yes, i knowC but i can ony add one line, but i want to put as the second line the address and third line the phone number

    #32984
    Sakin
    Keymaster

    @drlapco: Sorry no option, you need to build child theme and do the customization. If you were using Pro version then you could add it in Right Sidebar. But for free there is no open then to build child theme and then edit header.php file.

    #32986
    drlapco
    Member

    Ok, bu the thig is that on header.php it shows whats on theme options, where can i access, as a file the theme options? Where are they stored? What file?

    #32987
    Sakin
    Keymaster

    It’s not from Theme Options panel. It’s from simplecatch_headerdetails() function which you can find it in simplecatch_functions.php file. If you want to edit this then it’s simple, just build child theme and then create blank functions.php file copy simplecatch_headerdetails() functions and edit it.

    #32988
    drlapco
    Member

    thank you!

    #32989
    drlapco
    Member

    this is what i have as simplecatch_headerdetails:
    `function simplecatch_headerdetails() {
    //delete_transient( ‘simplecatch_headerdetails’ );

    global $simplecatch_options_settings;
    $options = $simplecatch_options_settings;

    if ( ( !$simplecatch_headerdetails = get_transient( ‘simplecatch_headerdetails’ ) ) && ( !empty( $options[ ‘featured_logo_header’ ] ) || empty( $options[ ‘remove_site_title’ ] ) || empty( $options[ ‘remove_site_description’ ] ) ) ) {
    echo ‘<!– refreshing cache –>’;
    $simplecatch_headerdetails = ‘<div class=”logo-wrap”>’;
    if( empty ($options[ ‘remove_header_logo’ ] ) ) {
    $simplecatch_headerdetails .= ‘<div id=”site-logo”><a href=”‘.esc_url( home_url( ‘/’ ) ).'” title=”‘.esc_attr( get_bloginfo( ‘name’, ‘display’ ) ).'”>’;

    which line to i edit? as there is no actual text that on my sites displays Ear nose and Throat specialist

    Thank you

    #32992
    Sakin
    Keymaster

    @drlapco: Already gave you direction. Sorry I think you might need to hire customizer to work on it.

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Add various lines of tagline’ is closed to new replies.