htmlcssthemestumblrtumblr-themes

Remove line in html/css Tumblr theme


Trying to remove this line in this Tumblr theme, but can't find in the code.

Any suggestions?

link to Theme


Solution

  • The tumblr webpage has a background image that adds those lines.

    #content {
        background: url(http://static.tumblr.com/cc4ocei/cMdkzipvh/borders.png) repeat-y left;
    }
    

    To remove the two lines, remove the background image.

    #content {
        background: white;
    }