Support » Themes and Templates » Where do I find this element?

  • On the top of my website – below the logotype and menu text – I have a black horizontal line. I assume that black line is a graphic element like a .gif file, my question is; in which WP file do I find the reference to that black line if I want to edit it? http://louisvorster.co.za

Viewing 2 replies - 1 through 2 (of 2 total)
  • this is a background image of the body style in style.css of your theme:

    body
    {
    	background-color: #ffffff;
    	background-attachment: scroll;
    	background-clip: border-box;
    	background-origin: padding-box;
    	background-size: auto auto;
    	background-image: url("images/bg.gif");
    	background-repeat: no-repeat;
    	background-position: center top;
    	font-family: "Arial",Helvetica,sans-serif;
    	font-size: 14px;
    	line-height: 22px;
    	color: #444444;
    }

    /wp-content/themes/simplefolio/images/bg.gif

    Thread Starter Louisv

    (@louisv)

    ah brilliant, thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Where do I find this element?’ is closed to new replies.