Author: adityasharma
Date: Sat Jul 28 08:32:37 2018
New Revision: 1836876
URL:
http://svn.apache.org/viewvc?rev=1836876&view=revLog:
Fixed: Blog title is invisible on blog view page of ecommerce store
(OFBIZ-10486)
The CSS rule defined in ecommain.css for 'a' overrides the rule for A.blogtitle, due to which the color of 'a' and its background became similar, thus making it invisible. To avoid such overriding, added 'important' attribute to css rule of A.blogtitle.
Modified:
ofbiz/branches/release16.11/specialpurpose/ecommerce/webapp/ecommerce/images/blog.css
Modified: ofbiz/branches/release16.11/specialpurpose/ecommerce/webapp/ecommerce/images/blog.css
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release16.11/specialpurpose/ecommerce/webapp/ecommerce/images/blog.css?rev=1836876&r1=1836875&r2=1836876&view=diff==============================================================================
--- ofbiz/branches/release16.11/specialpurpose/ecommerce/webapp/ecommerce/images/blog.css (original)
+++ ofbiz/branches/release16.11/specialpurpose/ecommerce/webapp/ecommerce/images/blog.css Sat Jul 28 08:32:37 2018
@@ -139,10 +139,10 @@ background: #fffeee;
}
.blogtitle, A.blogtitle {
-color: white;
+color: white!important;
font-weight: bold;
text-align: left;
-text-decoration: none;
+text-decoration: none!important;
display: inline;
}