CSS for Titles

  • Unknown's avatar

    Hi I need css for the following

    1. The top menu is it possible to move that right to the bottom of the site
    2. Hide the “Recent Projects” wording
    3. Adjusting the header image size

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    1. The top menu is it possible to move that right to the bottom of the site

    I’m not seeing a menu on your site. I did take a quick look at the demo site for Argent, and you can give the following a try.

    .main-navigation {
      position: absolute;
      bottom: 0;
    }
    #page {
      position: relative;
      padding-bottom: 80px;
    }

    2. Hide the “Recent Projects” wording

    This will hide Recent Projects.

    .front-page-block.portfolio .section-title {
      display: none;
    }

    3. Adjusting the header image size

    Can you explain a bit further on this? There are some Media Queries involved that change the height of that section depending on screen/window width, and it would be best to know when (width wise) you want to do this. Also, are you wanting it taller or shorter?

  • Unknown's avatar

    You’re amazing thank you!!

    Is there also a way to remove those stars? * * * * *

  • Unknown's avatar

    You are welcome, and this will remove the stars.

    .home .page-content::after {
      content: "";
    }
  • The topic ‘CSS for Titles’ is closed to new replies.