Page Title Difficulties

Good morning,

  1. I have an important meeting with a client in a few hours, and the page title on https://denverhighriseliving.com/news/ is not displaying correctly. It reads “Condo Intel” instead of “Groundbreaking News.” I am really struggling to get this changed to the right text. Can you please help?

  2. There are page titles (i.e. Condo Intel) that should be displaying in one line on mobile but are split onto two. Can that be changed?

Thank you,
J

Hi There @weatherstone

Thanks for writing in!

1.I have updated one of your jQuery codes to reflect the blog title.

/*Condo Search Placeholder*/
jQuery(document).ready(function(){ 
  jQuery("#woocommerce-product-search-field-0").attr("placeholder", "Condos");
  /*News Page Title*/
  jQuery('.blog h1.h-landmark span').text('Groundbreaking News');
});

2.Try adding the following media query into your X -> Theme Options -> CSS area.

@media(max-width:320px) {
  .my-headline .h-landmark {
    min-width: 320px !important;
  }
  body.archive .my-headline h1.h-landmark, body.blog .my-headline h1.h-landmark {
    font-size: 24px !important;
 }
}

Hope that helps.

  1. Works perfectly! You are awesome.

  2. This code isn’t affecting anything. :confused:
    Thank you!

Hi There,

Glad that it works for you!
The code won’t create any issue!

Thanks

Hello, I don’t think you understood my message.

The page title “Groundbreaking News” is splitting onto two lines on most devices, even large screens.

Thank you,
Josh

Hello Josh,

To resolve your issue, please edit your custom header and set the width of your text element to 100%.

We would loved to know if this has work for you. Thank you.

Hello,

I updated the width per your recommendation, but the title is still split.

Thank you,
J

Hello J,

I’ve modified the unit to be REM instead of % and it should be working now.

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.