Tagged: Simple Catch, tagline
- This topic has 14 replies, 2 voices, and was last updated 9 years ago by
Sakin.
-
AuthorPosts
-
May 29, 2014 at 7:29 am #32879
drlapco
MemberHi, 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
May 29, 2014 at 7:36 am #32883drlapco
Memberim using simple catch, btw
May 29, 2014 at 10:59 am #32904Sakin
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.
May 29, 2014 at 4:43 pm #32930drlapco
MemberSorry 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
May 29, 2014 at 11:08 pm #32965May 30, 2014 at 12:12 am #32975drlapco
MemberIm sorry, i have disabled it, thank you
May 30, 2014 at 12:12 am #32976drlapco
MemberIm sorry, i have disabled it, you can now see it
thank youMay 30, 2014 at 12:41 am #32981Sakin
Keymaster@drlapco: There is not option to do that. The site description is from your “Settings => General” tagline text.
May 30, 2014 at 12:44 am #32983drlapco
MemberYes, 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
May 30, 2014 at 12:47 am #32984Sakin
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.
May 30, 2014 at 12:50 am #32986drlapco
MemberOk, 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?
May 30, 2014 at 12:54 am #32987Sakin
KeymasterIt’s not from Theme Options panel. It’s from
simplecatch_headerdetails()
function which you can find it insimplecatch_functions.php
file. If you want to edit this then it’s simple, just build child theme and then create blankfunctions.php
file copysimplecatch_headerdetails()
functions and edit it.May 30, 2014 at 12:56 am #32988drlapco
Memberthank you!
May 30, 2014 at 12:59 am #32989drlapco
Memberthis 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
May 30, 2014 at 1:01 am #32992 -
AuthorPosts
- The topic ‘Add various lines of tagline’ is closed to new replies.