Jump to content

template help


johnchristy

Recommended Posts

Well, this is an image. If you want to change it with something else, you need to upload a new image and edit the global.css file of your theme. The path to the file of the default theme would be root/themes/default/css/global.css. This is the code that you need:

 

.informations_block_left li a {
   display:block;
   padding:7px 11px 5px 22px;
   color:#333;
   background:url(../../../modules/blockcms/img/arrow_right_2.png) no-repeat 10px 10px transparent;
}

 

In particular the background image. By default, this is the image arrow_right_2.png that's loaded from root/modules/blockcms/img. You can upload the new image in /modules/blockcms/img and just change the name of the image in the code of the global.css file. If you want to, you can upload the picture in the img folder of the theme (/themes/default/img), but then you have to change the path in the global.css file so that it looks like this:

 

.informations_block_left li a {
   display:block;
   padding:7px 11px 5px 22px;
   color:#333;
   background:url(../../../themes/default/img/image_name.png) no-repeat 10px 10px transparent;
}

 

Hope this helps.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...