• structuralpergolas

    (@structuralpergolas)


    All,

    My site is Structural Pergola Systems and I am looking to add some text or an image below the homepage menu (to the right of the logo)… Is there somewhere I can add some CSS code to input a picture or text into that area?

    Please let me know if you have an idea as to which files stores the data for that area of the homepage.

    Best,
    Justin

Viewing 3 replies - 1 through 3 (of 3 total)
  • mrtom414

    (@mrtom414)

    css is for styling not inserting new elements into your html structure. Therefore, CSS can’t help you.

    You have 2 options to add a new element.

    First, you can copy the header.php file into your child theme and edit that.

    Next,you can find or write a plugin or javascript that will insert the element on the fly.

    I think you can add an image with some custom css, for example:

    header .container .row {
      background-image:url("https://structuralpergolasystems.com/wp-content/uploads/2014/05/DSC_6842-366x366.jpg");
      background-repeat:no-repeat;
      background-position:right bottom
    }

    Replace the url with the url to your image.

    Custom css goes in Admin page > Appearance > Theme Options > Advanced Settings.

    mrtom414

    (@mrtom414)

    That really just assigning an image to an elements that already exist not creating a new element.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Multiple Header/Logo Images’ is closed to new replies.