Niall Fitzpatrick
asked 11 years ago

How can I change the icons on the intro page in the one page theme?

I would like to change the icons but I can’t even find where the existing ones are or referenced.

Regards,

Niall

1 Answers
DominicStaff
answered 11 years ago

Hello Niall Fitzpatrick !

-To change the icon in the “introducing ” page, you open the style.css file in the path folder “wp-content\themes\dw-page” and find the following code.
you can replace the “Icon-1.JPG” using the title of your icon image.


.icon-tpl-design {
  background: url(assets/img/Icon-1.JPG);
}

.icon-tpl-spaceship {
  background: url(assets/img/Icon-2.JPG);
}

.icon-tpl-galaxy {
  background: url(assets/img/Icon-3.JPG);
}

and need to select the position for image , you open the template.css file in the folder path “\wp-content\themes\dw-page\assets\css” > and find line 5448 to 5454.


.icon-tpl-design {
  background-position: 0 0;
}
.icon-tpl-spaceship {
  background-position: -60px 0;
}
.icon-tpl-galaxy {
  background-position: -120px 0;
}

Hope this help !
Regards,
Dominic

Powered by DW Question & Answer Pro