Forum
Welcome, Guest
Please Login to access forum.
Re:[SOLVED]Templates customization (1 viewing) 
Go to bottom
TOPIC: Re:[SOLVED]Templates customization
#3682
John Dagelmore
Admin
Posts: 3873
User Online Now
Re:[SOLVED]Templates customization Karma: 84  
Hi Phil,

it looks like you have changed to wrong code in the print.css file

Yesterday it was ok. Now it' wrong.

Now it's
Code:

.jmap_sitemap { background: -webkit-linear-gradient(top, #4196C2 0%, #00405C 100%) !important; background: -o-linear-gradient(top, #4196C2 0%, #00405C 100%) !important; background: -ms-linear-gradient(top, #4196C2 0%, #00405C 100%) !important; background: linear-gradient(top, #4196C2 0%, #00405C 100%) !important; }
the correct is using CSS id selector:
Code:

#jmap_sitemap { background: -webkit-linear-gradient(top, #4196C2 0%, #00405C 100%) !important; background: -o-linear-gradient(top, #4196C2 0%, #00405C 100%) !important; background: -ms-linear-gradient(top, #4196C2 0%, #00405C 100%) !important; background: linear-gradient(top, #4196C2 0%, #00405C 100%) !important; }
If the sitemap shows 1 column it means that you have disabled the option 'Renders sitemap by column' It should be easy but i'm getting confused too by all messing up. Rgds John
 
Logged Logged  
  The administrator has disabled public write access.
Go to top