• Resolved gokh

    (@gokh)


    Hi,

    Page title border-bottom is not displayed. What is the problem.

    .entry-header {
    margin-top: -20px;
    border-bottom:5px;
    border-bottom-color: #000000;
    }

    Thanks

    The page I need help with: [log in to see the link]

Viewing 9 replies - 1 through 9 (of 9 total)
  • Theme Author terrathemes

    (@terrathemes)

    Hi,

    you are missing the border-bottom-style: solid attribute.

    You can also write your code a bit shorter using this

    .entry-header {
    margin-top: -20px;
    border-bottom: 5px solid #000000;
    }
    Thread Starter gokh

    (@gokh)

    Hi,

    The page setting is full width, but the page title (border-bottom) is not full width.

    Thanks

    Theme Author terrathemes

    (@terrathemes)

    With the normal page title it is not easy to get the border full with but to have the title boxed with the content width. You should try to use the page builder template and use a text widget to make your own page title. That row then can have the border bottom in the row settings.

    Thread Starter gokh

    (@gokh)

    I did not want to create extra code and space. I’ll do it with Page builder then ..

    Thread Starter gokh

    (@gokh)

    It was better to reduce the width.

    Theme Author terrathemes

    (@terrathemes)

    Instead of reducing the width I would suggest you to use the pseudo-element ::after like this to create the line:

    .entry-header .title-post::after {
      content: "";
      background-color: #202529;
      height: 2px;
      width: 100px;
      display: block;
      top: 25px;
      position: relative;
    }

    That way the container width isn’t affected since this may have negative effects in other cases.

    Thread Starter gokh

    (@gokh)

    All right, great…

    Thread Starter gokh

    (@gokh)

    I want to add a background image to the contact page. How could it be?

    https://i.hizliresim.com/XP6zLD.jpg

    Theme Author terrathemes

    (@terrathemes)

    Hi,

    please use your image as the featured image for this site.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘https://w.tuyograf.com’ is closed to new replies.