Ana Rewis
Posts: 0
Joined: Tue Jul 07, 2015 12:46 pm

I have same problem as the other

Can you please introduce me to the other person encountered this problem?

https://getsatisfaction.com/apperyio/...

Ana Rewis
Posts: 0
Joined: Tue Jul 07, 2015 12:46 pm

I have same problem as the other

I had found him to solve this problem.

Ana Rewis
Posts: 0
Joined: Tue Jul 07, 2015 12:46 pm

I have same problem as the other

Can I know his email? or is there any way for me to contact to him?

Illya Stepanov
Posts: 0
Joined: Mon Mar 18, 2013 8:48 am

I have same problem as the other

Hi Ana -

You can ask him directly in that forum thread.

LS
Posts: 0
Joined: Tue Jun 23, 2015 8:08 am

I have same problem as the other

By clicking the "Source", you can check the path of your css file, and the image file
(mine is in
WEB_RESOURCES-files-views-assets-css-background.css
WEB_RESOURCES-files-views-assets-image-back_button.png)

Image

So, in your css file, include the following class:

.setButtonImage{
background-image: url("../image/back_button.png")!important;
background-color: #4A4C70!important;
}

you can add other parameters according to your requirement in the class.

[ the changes will be automatically refected to the screen, if not, then after saving it, launch the test]

The main thing you need to care of, is to keep track of your css file and your image file.
And also put the (!important) at the end.

Suppose, your css file is in WEB_RESOURCES-files-views-assets-css-background.css
and your image is WEB_RESOURCES-files-resources-image-option_menu.png.
Then, you need to set the url as ("../../../resouces/image/option_menu.png")

each of the "../" means coming one directory out of your currect ccs file location.

So, "../../../ " means
you are coming out from your css file path in search of the image file:
WEB_RESOURCES-files-views-assets
WEB_RESOURCES-files-views
WEB_RESOURCES-files

and then go inside "resouces/image/option_menu.png"

And one more thing, don't make any changes by selecting any of the file after selecting the "Source".
(i.e. don't make any changes on the files inside WEB_RESOURCES)

You can make any changes by Clicking the Project again, and select CSS and then your css file.
(you will find the same css file which was present in WEB_RESOURCES-files-views-assets-css-background.css).

Return to “Issues”