Loading...
 
Skip to main content

Title and subtitle lost css properties on upgrade from 9.x to 12.x

Status
Closed
Subject
Title and subtitle lost css properties on upgrade from 9.x to 12.x
Version
12.x Regression
Category
  • Regression
Feature
Theme: Look & feel, Styles, CSS, Theme Control Center
Resolution status
Works For Me
Submitted by
Xavier de Pedro
Volunteered to solve
Gary Cunningham-Lee
Lastmod by
Xavier de Pedro
Rating
(0)
Description

Title and subtitle lost css properties on upgrade from 9.x to 12.x

If no automatic conversion is possible, at least some information should be provided in the http://doc.tiki.org/Tiki12#UpgradeQuestion page.

Solution
There doesn't seem to be a regression in the code. If this problem is seen at a particular website, check to be sure the CSS selector (the full "path" of classes in the stylesheet - .class1 .class2 #sitetitle) is correct.
Workaround

: Fixed it by replacing the custom css properties that we had in Tiki9:

Tiki9
Copy to clipboard
#sitetitle { text-shadow: 2px 1px 0 #9C277D; } #sitetitle a { color: #CCCCCC !important; } #sitesubtitle { text-shadow: 2px 1px 0 #9C277D; color: #CCCCCC; }


with those others in Tiki12 to achieve a similar look and feel of the site title and subtitle:

Tiki12
Copy to clipboard
.sitetitle { text-shadow: 2px 1px 0 #9C277D; line-height:1; font-size: 265%; letter-spacing:-0.05em; padding-top: 10px; } .sitetitle a, .sitetitle a:visited { color: #CCCCCC !important; text-decoration:none; } .sitesubtitle { text-shadow: 2px 1px 0 #9C277D; line-height:2; color: #CCCCCC; }
Importance
5
Easy to solve?
8
Priority
40
Demonstrate Bug on Tiki 19+
Demonstrate Bug (older Tiki versions)
Ticket ID
4938
Created
Sunday 17 November, 2013 07:30:06 UTC
by Xavier de Pedro
LastModif
Wednesday 04 December, 2013 10:58:19 UTC


Show PHP error messages