• Hi!

    How do I put a custom design surrounding the menu bar?

    How do I create a border fully surrounding all posts to make them stick out a little more….
    My blog: winepug.com

    EXAMPLE:
    The menu bar and how posts are displayed and almost look 3D below:

    https://www.anniedean.com

    Thank you!

Viewing 1 replies (of 1 total)
  • Neat name!

    To make a nav bar like the one in the example you would just have to create the image that you want to use (in that case it was the banner) and set it as the background using css (using either a child theme or a custom css plugin)

    #access {
        background: url('../images/menubg.png') no-repeat;
    }
    article {
        border: 2px solid pink;
        box-shadow: 2px 2px 2px purple;
    }

    What you would need would be similar to the example above; if you didn’t want to use an image for your menu background, you could just use border and box-shadow for it as well. (The box-shadow syntax is “box-shadow: horizontal-shadow vertical-shadow blur spread color inset;”

    Hope that helps, or at least gets you going in the right direction!

Viewing 1 replies (of 1 total)
  • The topic ‘Menu Bar and’ is closed to new replies.