• Resolved hymer

    (@hymer)


    I should like to change the title to a logo image in Bettaszalon.hu. I have a longer text under the title. I should like to put a <br> in the text, but I cannot find the html editor. Thank you.

Viewing 15 replies - 1 through 15 (of 15 total)
  • Hey there Hymer,

    How are you doing today?

    The reason you can’t find it in the template file is because it is pulling the value from your admin so all you should find there is php code related to it.

    The easiest way to break it into multiple lines is to actually use CSS to reduce the width of the site description element which will effectively break it into multiple lines.

    If you want to do that please try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:

    http://wordpress.org/plugins/simple-custom-css

    #page .site-description {
        width: 30%;
        margin-left: auto;
        margin-right: auto;
    }

    This should be the result http://screencast.com/t/zzapDbXI6OW.

    Hope this helps 🙂

    Cheers,
    Bojan

    Thread Starter hymer

    (@hymer)

    Hey Bojan! Not too bad, thanks. And thank you for advice. It is good and I shall use it much. But the sentence on the homepage is not breaken as I want it. It is not enough to declare the width, I should like to break it between other words.
    And how about the logo-image? How can I change or complete the title with logo?

    Hey again Hymer,

    It appears that the theme doesn’t have logo included, I found one option for that in customize but it wasn’t really doing anything.

    In order to add logo you’ll have to edit your header.php. and add the logo image there, you’ll find more information here http://codex.wordpress.org/Designing_Headers.

    As for breaking desc into multiple lines you can try this solution http://presscustomizr.com/snippet/adding-a-multi-line-tagline/, this will add line of text above and below your actual description so you can try to combine both the width solution and this one.

    Hope this helps

    Best regards,
    Bojan

    Thread Starter hymer

    (@hymer)

    Thank you. But now whole the text disappeared, however in “customize” I ticked for appearing the text. It is really a difficult theme.

    Hey again,

    This happens when you’re trying to implement which solution?

    I tested the CSS and it worked on my end.

    Please advise,
    Bojan

    Thread Starter hymer

    (@hymer)

    Thank you for your patience. Now I got back the text. I activated another theme, and then back to Dream-way. I didn’t do anything else, so I don’t know how the text disappeared and appeared again.
    Bot sorry, I don’t understand the instructions on the links. I should like to put a little logo instead of the title Betta Szépségszalon. Or beside it, I don’t know yet, I will try. How can I see the <h1>Betta Szépségszalon</h1> in the html? Is it impossible?

    Thread Starter hymer

    (@hymer)

    I read the article, but I don’t know, where shall I put in the codes. I don’t want to modify anything in the theme, only change the title text to image. Where can I see the title in html?

    Hey again,

    I see that you managed to add a logo in your header. If you want to have both logo and site title you’ll have to make changes to your theme header.php or use jQuery to add a div below your logo which would require editing your theme functions.php.

    Please let me know if this is the outcome you’re looking to have or not?

    Best regards,
    Bojan

    Thread Starter hymer

    (@hymer)

    I changed the theme to Colorway, it is easier to customize. It was easy to set up a logo-image in the InkThemes Theme.
    Now I got another problem, I should like to to put a beside the logo. The same text you see under the big slide. So my problemi is not the same, but I still don’t know, how to edit tha php. In the header php I can find this:

    <div class="logo">
                        <a href="<?php echo home_url(); ?>"><img src="<?php if (inkthemes_get_option('colorway_logo') != '') { ?><?php echo inkthemes_get_option('colorway_logo'); ?><?php } else { ?><?php echo get_template_directory_uri(); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?> logo"/></a>

    I understand that it will be a div under this, but how shall I get the text beside the logo image?

    Hey again Hymer,

    This is exactly where you want to place it. Just make sure you place the div below the closing div tag of the logo div. Also make sure to add a class or ID to your text element, if you want it to be a div add something like this:

    <div class="headertext">Your text</div>

    Once you do that we should be able to re position it in the header to be next to your logo instead of below with some custom CSS.

    Also you might want to consider to create a child theme, make a copy of header.php in your child theme and make the changes there. By doing this you can avoid your changes being lost once you update the theme.

    Best regards,
    Bojan

    Hey again Hymer,

    It really depends on the slider code, if you’re being able to add it via shortcode then you can place the following inside the div in your header.php:

    <?php echo do_shortcode("[shortcode]"); ?>

    Hope this helps 🙂

    Cheers,
    Bojan

    Thread Starter hymer

    (@hymer)

    Thank you, Bojan, you helped me very much.

    Glad I could help 🙂

    Cheers,
    Bojan

    Hello Bojan,

    I would like to change the height of the header image – how can I do this? My client’s (gorgeous) signature image does not fit in the allotted space. Thank you!

    Phila

    Hello @philahoopes,

    Can you open new thread for this issue? Please see forum regulations https://make.wordpress.org/support/handbook/forum-guidelines/#search-before-posting

    kind regards,
    Kasia

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘How to edit the header?’ is closed to new replies.