WPS Office - Change Spreadsheets Default Fill Background Color
up vote
2
down vote
favorite
I installed WPS Office for the first time. It is amazing, so much so that I wonder if there is some hidden adware that I can't remove (e.g., what is Docer).
That said, my issue is that the background on WPS Spreadsheets for all sheets is this weird brown color. I've tried changing the Page Layout
> Themes
and Colors
. I've also tried to Format Cells
. But there does not appear (or I can't find) a way to change the default background color. Is there a way?
Here is what it looks like.
wps-office
add a comment |
up vote
2
down vote
favorite
I installed WPS Office for the first time. It is amazing, so much so that I wonder if there is some hidden adware that I can't remove (e.g., what is Docer).
That said, my issue is that the background on WPS Spreadsheets for all sheets is this weird brown color. I've tried changing the Page Layout
> Themes
and Colors
. I've also tried to Format Cells
. But there does not appear (or I can't find) a way to change the default background color. Is there a way?
Here is what it looks like.
wps-office
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I installed WPS Office for the first time. It is amazing, so much so that I wonder if there is some hidden adware that I can't remove (e.g., what is Docer).
That said, my issue is that the background on WPS Spreadsheets for all sheets is this weird brown color. I've tried changing the Page Layout
> Themes
and Colors
. I've also tried to Format Cells
. But there does not appear (or I can't find) a way to change the default background color. Is there a way?
Here is what it looks like.
wps-office
I installed WPS Office for the first time. It is amazing, so much so that I wonder if there is some hidden adware that I can't remove (e.g., what is Docer).
That said, my issue is that the background on WPS Spreadsheets for all sheets is this weird brown color. I've tried changing the Page Layout
> Themes
and Colors
. I've also tried to Format Cells
. But there does not appear (or I can't find) a way to change the default background color. Is there a way?
Here is what it looks like.
wps-office
wps-office
edited Jul 7 '17 at 4:01
asked Mar 4 '17 at 21:07
Rsync
48421228
48421228
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
up vote
4
down vote
accepted
As an addendum to Roel Brook's answer, I found that you can actually change this setting in the binary file. To do this open terminal and enter
sudo $EDITOR /bin/et
Then look for:
${gInstallPath}/office6/${gApp} -style gtk+ ${gOptExt} ${gOpt} "$@"
and change it to:
${gInstallPath}/office6/${gApp} -style motif ${gOptExt} ${gOpt} "$@"
Then save and close. Now the changes will be persistent.
2
Thanks @Dan Temkin. I attempted to edit the binary file, but I had noet
file in/bin
. Instead, it was at/usr/bin/et
. Also, and more importantly, it doesn't have the line you mention. There is no-style gtk+
anywhere in the file. The closest line I have is:else ${gInstallPath}/office6/${gApp} ${gOptExt} ${gOpt} "$@"
. Am I in the wrong directory?
– Rsync
Jul 7 '17 at 2:51
I missed the 5 minute edit time restriction. Here is what I meant to add: Despite the different directory, I added-style motif
in the same place you had it. And it worked!!! I'm going to go through a few restarts to see if it sticks. If so, I'll mark it solved and thank you very much.
– Rsync
Jul 7 '17 at 2:57
add a comment |
up vote
2
down vote
As with most QT applications, WPS accepts "-style".
For example:
et -style motif
This will ignore the current desktop theme, and run WPS with that specific QT theme.
Thanks @Roel Brook, but that solution actually doesn't work other than when launching through the terminal. If you put theet -style motif
in the.desktop
file in/usr/share/applications
, it only works when you launch from that directory. Else (e.g., if you open a .xlsx file in another location or a blank document), it keeps the brown background.
– Rsync
Jul 7 '17 at 2:49
works for me if I edit the launcher properties in Linux Mint Cinnamon 18 as follows: command: /usr/bin/et -style motif
– flyingdrifter
Nov 28 '17 at 16:50
add a comment |
up vote
1
down vote
Turns out this is caused by an interaction with the Arc Dark theme (it does not occur with Arc or Arc Darker). I posted an issue on Horst's GitHub page.
add a comment |
up vote
0
down vote
I had the same problem, but the solution above given by Dan (which seems to be the right one as it is referenced in every forum I came across) wasn't working for me. But I found another fix which DOES work, although not permanently.
I am using a KDE neon build, and the solution below worked for me:
WPS_NO_KDE_NATIVE_DIALOG=1 et -style gtk+
This is for spreadsheets. For writer and presentation, substitute "et" with "wps" and "wpp" respectively.
Solution attributed to user "raddison" on KDE Forum, under the "WPS Office not working" topic.
add a comment |
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
As an addendum to Roel Brook's answer, I found that you can actually change this setting in the binary file. To do this open terminal and enter
sudo $EDITOR /bin/et
Then look for:
${gInstallPath}/office6/${gApp} -style gtk+ ${gOptExt} ${gOpt} "$@"
and change it to:
${gInstallPath}/office6/${gApp} -style motif ${gOptExt} ${gOpt} "$@"
Then save and close. Now the changes will be persistent.
2
Thanks @Dan Temkin. I attempted to edit the binary file, but I had noet
file in/bin
. Instead, it was at/usr/bin/et
. Also, and more importantly, it doesn't have the line you mention. There is no-style gtk+
anywhere in the file. The closest line I have is:else ${gInstallPath}/office6/${gApp} ${gOptExt} ${gOpt} "$@"
. Am I in the wrong directory?
– Rsync
Jul 7 '17 at 2:51
I missed the 5 minute edit time restriction. Here is what I meant to add: Despite the different directory, I added-style motif
in the same place you had it. And it worked!!! I'm going to go through a few restarts to see if it sticks. If so, I'll mark it solved and thank you very much.
– Rsync
Jul 7 '17 at 2:57
add a comment |
up vote
4
down vote
accepted
As an addendum to Roel Brook's answer, I found that you can actually change this setting in the binary file. To do this open terminal and enter
sudo $EDITOR /bin/et
Then look for:
${gInstallPath}/office6/${gApp} -style gtk+ ${gOptExt} ${gOpt} "$@"
and change it to:
${gInstallPath}/office6/${gApp} -style motif ${gOptExt} ${gOpt} "$@"
Then save and close. Now the changes will be persistent.
2
Thanks @Dan Temkin. I attempted to edit the binary file, but I had noet
file in/bin
. Instead, it was at/usr/bin/et
. Also, and more importantly, it doesn't have the line you mention. There is no-style gtk+
anywhere in the file. The closest line I have is:else ${gInstallPath}/office6/${gApp} ${gOptExt} ${gOpt} "$@"
. Am I in the wrong directory?
– Rsync
Jul 7 '17 at 2:51
I missed the 5 minute edit time restriction. Here is what I meant to add: Despite the different directory, I added-style motif
in the same place you had it. And it worked!!! I'm going to go through a few restarts to see if it sticks. If so, I'll mark it solved and thank you very much.
– Rsync
Jul 7 '17 at 2:57
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
As an addendum to Roel Brook's answer, I found that you can actually change this setting in the binary file. To do this open terminal and enter
sudo $EDITOR /bin/et
Then look for:
${gInstallPath}/office6/${gApp} -style gtk+ ${gOptExt} ${gOpt} "$@"
and change it to:
${gInstallPath}/office6/${gApp} -style motif ${gOptExt} ${gOpt} "$@"
Then save and close. Now the changes will be persistent.
As an addendum to Roel Brook's answer, I found that you can actually change this setting in the binary file. To do this open terminal and enter
sudo $EDITOR /bin/et
Then look for:
${gInstallPath}/office6/${gApp} -style gtk+ ${gOptExt} ${gOpt} "$@"
and change it to:
${gInstallPath}/office6/${gApp} -style motif ${gOptExt} ${gOpt} "$@"
Then save and close. Now the changes will be persistent.
answered Jul 6 '17 at 0:52
Dan Temkin
1565
1565
2
Thanks @Dan Temkin. I attempted to edit the binary file, but I had noet
file in/bin
. Instead, it was at/usr/bin/et
. Also, and more importantly, it doesn't have the line you mention. There is no-style gtk+
anywhere in the file. The closest line I have is:else ${gInstallPath}/office6/${gApp} ${gOptExt} ${gOpt} "$@"
. Am I in the wrong directory?
– Rsync
Jul 7 '17 at 2:51
I missed the 5 minute edit time restriction. Here is what I meant to add: Despite the different directory, I added-style motif
in the same place you had it. And it worked!!! I'm going to go through a few restarts to see if it sticks. If so, I'll mark it solved and thank you very much.
– Rsync
Jul 7 '17 at 2:57
add a comment |
2
Thanks @Dan Temkin. I attempted to edit the binary file, but I had noet
file in/bin
. Instead, it was at/usr/bin/et
. Also, and more importantly, it doesn't have the line you mention. There is no-style gtk+
anywhere in the file. The closest line I have is:else ${gInstallPath}/office6/${gApp} ${gOptExt} ${gOpt} "$@"
. Am I in the wrong directory?
– Rsync
Jul 7 '17 at 2:51
I missed the 5 minute edit time restriction. Here is what I meant to add: Despite the different directory, I added-style motif
in the same place you had it. And it worked!!! I'm going to go through a few restarts to see if it sticks. If so, I'll mark it solved and thank you very much.
– Rsync
Jul 7 '17 at 2:57
2
2
Thanks @Dan Temkin. I attempted to edit the binary file, but I had no
et
file in /bin
. Instead, it was at /usr/bin/et
. Also, and more importantly, it doesn't have the line you mention. There is no -style gtk+
anywhere in the file. The closest line I have is: else ${gInstallPath}/office6/${gApp} ${gOptExt} ${gOpt} "$@"
. Am I in the wrong directory?– Rsync
Jul 7 '17 at 2:51
Thanks @Dan Temkin. I attempted to edit the binary file, but I had no
et
file in /bin
. Instead, it was at /usr/bin/et
. Also, and more importantly, it doesn't have the line you mention. There is no -style gtk+
anywhere in the file. The closest line I have is: else ${gInstallPath}/office6/${gApp} ${gOptExt} ${gOpt} "$@"
. Am I in the wrong directory?– Rsync
Jul 7 '17 at 2:51
I missed the 5 minute edit time restriction. Here is what I meant to add: Despite the different directory, I added
-style motif
in the same place you had it. And it worked!!! I'm going to go through a few restarts to see if it sticks. If so, I'll mark it solved and thank you very much.– Rsync
Jul 7 '17 at 2:57
I missed the 5 minute edit time restriction. Here is what I meant to add: Despite the different directory, I added
-style motif
in the same place you had it. And it worked!!! I'm going to go through a few restarts to see if it sticks. If so, I'll mark it solved and thank you very much.– Rsync
Jul 7 '17 at 2:57
add a comment |
up vote
2
down vote
As with most QT applications, WPS accepts "-style".
For example:
et -style motif
This will ignore the current desktop theme, and run WPS with that specific QT theme.
Thanks @Roel Brook, but that solution actually doesn't work other than when launching through the terminal. If you put theet -style motif
in the.desktop
file in/usr/share/applications
, it only works when you launch from that directory. Else (e.g., if you open a .xlsx file in another location or a blank document), it keeps the brown background.
– Rsync
Jul 7 '17 at 2:49
works for me if I edit the launcher properties in Linux Mint Cinnamon 18 as follows: command: /usr/bin/et -style motif
– flyingdrifter
Nov 28 '17 at 16:50
add a comment |
up vote
2
down vote
As with most QT applications, WPS accepts "-style".
For example:
et -style motif
This will ignore the current desktop theme, and run WPS with that specific QT theme.
Thanks @Roel Brook, but that solution actually doesn't work other than when launching through the terminal. If you put theet -style motif
in the.desktop
file in/usr/share/applications
, it only works when you launch from that directory. Else (e.g., if you open a .xlsx file in another location or a blank document), it keeps the brown background.
– Rsync
Jul 7 '17 at 2:49
works for me if I edit the launcher properties in Linux Mint Cinnamon 18 as follows: command: /usr/bin/et -style motif
– flyingdrifter
Nov 28 '17 at 16:50
add a comment |
up vote
2
down vote
up vote
2
down vote
As with most QT applications, WPS accepts "-style".
For example:
et -style motif
This will ignore the current desktop theme, and run WPS with that specific QT theme.
As with most QT applications, WPS accepts "-style".
For example:
et -style motif
This will ignore the current desktop theme, and run WPS with that specific QT theme.
answered Apr 25 '17 at 11:05
Roel Brook
212
212
Thanks @Roel Brook, but that solution actually doesn't work other than when launching through the terminal. If you put theet -style motif
in the.desktop
file in/usr/share/applications
, it only works when you launch from that directory. Else (e.g., if you open a .xlsx file in another location or a blank document), it keeps the brown background.
– Rsync
Jul 7 '17 at 2:49
works for me if I edit the launcher properties in Linux Mint Cinnamon 18 as follows: command: /usr/bin/et -style motif
– flyingdrifter
Nov 28 '17 at 16:50
add a comment |
Thanks @Roel Brook, but that solution actually doesn't work other than when launching through the terminal. If you put theet -style motif
in the.desktop
file in/usr/share/applications
, it only works when you launch from that directory. Else (e.g., if you open a .xlsx file in another location or a blank document), it keeps the brown background.
– Rsync
Jul 7 '17 at 2:49
works for me if I edit the launcher properties in Linux Mint Cinnamon 18 as follows: command: /usr/bin/et -style motif
– flyingdrifter
Nov 28 '17 at 16:50
Thanks @Roel Brook, but that solution actually doesn't work other than when launching through the terminal. If you put the
et -style motif
in the .desktop
file in /usr/share/applications
, it only works when you launch from that directory. Else (e.g., if you open a .xlsx file in another location or a blank document), it keeps the brown background.– Rsync
Jul 7 '17 at 2:49
Thanks @Roel Brook, but that solution actually doesn't work other than when launching through the terminal. If you put the
et -style motif
in the .desktop
file in /usr/share/applications
, it only works when you launch from that directory. Else (e.g., if you open a .xlsx file in another location or a blank document), it keeps the brown background.– Rsync
Jul 7 '17 at 2:49
works for me if I edit the launcher properties in Linux Mint Cinnamon 18 as follows: command: /usr/bin/et -style motif
– flyingdrifter
Nov 28 '17 at 16:50
works for me if I edit the launcher properties in Linux Mint Cinnamon 18 as follows: command: /usr/bin/et -style motif
– flyingdrifter
Nov 28 '17 at 16:50
add a comment |
up vote
1
down vote
Turns out this is caused by an interaction with the Arc Dark theme (it does not occur with Arc or Arc Darker). I posted an issue on Horst's GitHub page.
add a comment |
up vote
1
down vote
Turns out this is caused by an interaction with the Arc Dark theme (it does not occur with Arc or Arc Darker). I posted an issue on Horst's GitHub page.
add a comment |
up vote
1
down vote
up vote
1
down vote
Turns out this is caused by an interaction with the Arc Dark theme (it does not occur with Arc or Arc Darker). I posted an issue on Horst's GitHub page.
Turns out this is caused by an interaction with the Arc Dark theme (it does not occur with Arc or Arc Darker). I posted an issue on Horst's GitHub page.
answered Mar 4 '17 at 23:27
Rsync
48421228
48421228
add a comment |
add a comment |
up vote
0
down vote
I had the same problem, but the solution above given by Dan (which seems to be the right one as it is referenced in every forum I came across) wasn't working for me. But I found another fix which DOES work, although not permanently.
I am using a KDE neon build, and the solution below worked for me:
WPS_NO_KDE_NATIVE_DIALOG=1 et -style gtk+
This is for spreadsheets. For writer and presentation, substitute "et" with "wps" and "wpp" respectively.
Solution attributed to user "raddison" on KDE Forum, under the "WPS Office not working" topic.
add a comment |
up vote
0
down vote
I had the same problem, but the solution above given by Dan (which seems to be the right one as it is referenced in every forum I came across) wasn't working for me. But I found another fix which DOES work, although not permanently.
I am using a KDE neon build, and the solution below worked for me:
WPS_NO_KDE_NATIVE_DIALOG=1 et -style gtk+
This is for spreadsheets. For writer and presentation, substitute "et" with "wps" and "wpp" respectively.
Solution attributed to user "raddison" on KDE Forum, under the "WPS Office not working" topic.
add a comment |
up vote
0
down vote
up vote
0
down vote
I had the same problem, but the solution above given by Dan (which seems to be the right one as it is referenced in every forum I came across) wasn't working for me. But I found another fix which DOES work, although not permanently.
I am using a KDE neon build, and the solution below worked for me:
WPS_NO_KDE_NATIVE_DIALOG=1 et -style gtk+
This is for spreadsheets. For writer and presentation, substitute "et" with "wps" and "wpp" respectively.
Solution attributed to user "raddison" on KDE Forum, under the "WPS Office not working" topic.
I had the same problem, but the solution above given by Dan (which seems to be the right one as it is referenced in every forum I came across) wasn't working for me. But I found another fix which DOES work, although not permanently.
I am using a KDE neon build, and the solution below worked for me:
WPS_NO_KDE_NATIVE_DIALOG=1 et -style gtk+
This is for spreadsheets. For writer and presentation, substitute "et" with "wps" and "wpp" respectively.
Solution attributed to user "raddison" on KDE Forum, under the "WPS Office not working" topic.
answered Nov 23 at 4:11
S. Shinde
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f889601%2fwps-office-change-spreadsheets-default-fill-background-color%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown