Viewing 4 replies - 1 through 4 (of 4 total)
  • Delete the background-image in your CSS (seen below) which is in your default.css file (line 22)

    .catlist h2
    {
    color: #ff7800;
    background-color: transparent;
    background-image: url("default/ico-catlist.gif");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: right center;
    background-clip: border-box;
    background-origin: padding-box;
    background-size: auto auto;
    }
    Thread Starter jcoberly

    (@jcoberly)

    This is what I see in both my style.css and my custom.css:

    catlist h2 {
    
    	color: #bf1e2e;
    
    	font-size: 14px;
    
    	padding: 0 20px 0 0 !important;
    
    }

    Am I looking in the wrong place?

    It’s in a file called default.css. It would appear your theme has multiple color styles, so will probably be in a sub directory of your theme. From your URL structure shown above possibly -> premiumnews/styles/default/

    You could also just add background-image: none; to your custom css

    Thread Starter jcoberly

    (@jcoberly)

    That second fix was awesome. I even put a custom image in. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Want To Delete Background Image But Don't See It In Code’ is closed to new replies.