Viewing 10 replies - 31 through 40 (of 40 total)
  • Under my Attributes, the only items listed are – “widget class” and “css styles”

    I do not see the options you mention above

    Oh perfect, I did find it! Thank you!

    Anyway you can suggest how to center my logo in that header? Notice how it is down a little bit?

    Theme Author TT Themes

    (@tomastoman)

    It should help if you change the value of the “margin-top” property from -50px to a lower value (about -90px) in the following custom CSS:

    @media screen and (min-width: 1012px) { #wrapper .header-logo {float: right; margin-top: -50px;} }

    Then you will need to decrease the value “top” for the .site-title as well:

    @media screen and (min-width: 1012px) { #wrapper .site-title {top: 120px;} }

    Best regards,
    Tomas Toman

    Where should I put the CSS that you mentioned that I can hide the background around page titles? I like on the about page how it has that line all the way across.

    Theme Author TT Themes

    (@tomastoman)

    I recommend you to put all custom CSS into “Appearance > Customize > HappenStance General Settings > Custom CSS”. If you would like to hide only the white background but keep the background pattern (the hatched line), then please use this custom CSS instead:

    #wrapper .entry-headline-text {background: none;}

    Best regards,
    Tomas Toman

    When I do that the letters go over the hatched line and it is hard to see. Do you think it is possible to have the letters with no background then the hatched line?

    Also, is there a way to make one of my pages a box layout and leave all the others wide?

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    I am sorry, but there has to be a background color under the page title so that the letters don’t go over the hatched line (as it is by default).

    To make only one page in the Boxed layout, you will need to create a child theme and put the following code into your child theme’s “functions.php”:

    function happenstance_child_css_include () {
    if ( !is_page( 1234 ) ) {
    wp_enqueue_style('happenstance-child-wide-layout', get_template_directory_uri().'/css/wide-layout.css');
    }
    }
    add_action( 'wp_enqueue_scripts', 'happenstance_child_css_include' );

    Just replace the number “1234” in the code above with the appropriate ID of the page where you would like to have the Boxed layout. The “Boxed” layout needs to be set in the Customizer in order to make it work.

    Best regards,
    Tomas Toman

    Note: If you have a question that is not related to the original topic, please create a separate topic for each new question. It helps to make the forum clearer. Thank you!

    Hi Tomas,
    I updated the software on wordpress and now my title is one on my homepage. Are you able to assist with that? The logo is also up more and no longer centered vertically.

    Thanks

    Are you able to help get my site title back? It is now gone since I have done the update

Viewing 10 replies - 31 through 40 (of 40 total)
  • The topic ‘Header & Menu’ is closed to new replies.