woo commerce site-wide store notice text NOT showing
eCommerce WordPress theme with various e-store features and WooCommerce support.
- GK User
- Fri Sep 04, 2015 12:02 am
Hello
I have enabled the site-wide store notice text on woo commerce but the message i wrote in the settings page is not showing across the store
my website is http://www.citystationerygroup.com
i have attached the settings page screenshot
THANK YOU
I have enabled the site-wide store notice text on woo commerce but the message i wrote in the settings page is not showing across the store
my website is http://www.citystationerygroup.com
i have attached the settings page screenshot
scree.jpg
THANK YOU
-
- Fresh Boarder
- GK User
- Fri Sep 04, 2015 8:13 am
The message is visible under the footer, please add the following css code or update your theme to latest version to center the message:
- Code: Select all
/* site-wide store notice text */
.demo_store {
text-align: center;
}
-
- Moderator
- GK User
- Fri Sep 04, 2015 12:16 pm
Piotr Kunicki wrote:The message is visible under the footer, please add the following css code or update your theme to latest version to center the message:
- Code: Select all
/* site-wide store notice text */
.demo_store {
text-align: center;
}
How can i make it that the message appears on the top not footer ?
-
- Fresh Boarder
- GK User
- Fri Sep 04, 2015 12:26 pm
Try this css code:
- Code: Select all
.demo_store {
position: absolute;
top: 0;
width: 500px;
left: 50%;
margin-left: -250px;
}
-
- Moderator
- GK User
- Fri Sep 04, 2015 12:31 pm
Piotr Kunicki wrote:Try this css code:
- Code: Select all
.demo_store {
position: absolute;
top: 0;
width: 500px;
left: 50%;
margin-left: -250px;
}
Where do i post this code ?
-
- Fresh Boarder
- GK User
- Fri Sep 04, 2015 12:35 pm
Please check this article:
https://www.gavick.com/documentation/wo ... -wordpress
https://www.gavick.com/documentation/wo ... -wordpress
-
- Moderator
- GK User
- Fri Sep 04, 2015 1:10 pm
Piotr Kunicki wrote:Please check this article:
https://www.gavick.com/documentation/wo ... -wordpress
It worked
Thank you
Is there a way to have the font in bold and in red color ?
-
- Fresh Boarder
- GK User
- Mon Sep 07, 2015 8:23 am
Yes, change the code to:
please change the color value to your own.(hex)
- Code: Select all
.demo_store {
position: absolute;
top: 0;
width: 500px;
left: 50%;
margin-left: -250px;
font-weight: bold;
color: #your-color-value
}
please change the color value to your own.(hex)
-
- Moderator
8 posts
• Page 1 of 1