Forum
Welcome, Guest
Please Login to access forum.
[SOLVED] Problem with background color (1 viewing) 
Go to bottom
TOPIC: [SOLVED] Problem with background color
#304
Hrvoje Znaor
Fresh Boarder
Posts: 14
User Offline
[SOLVED] Problem with background color Karma: 1  
Hello

Please take a look at this link: <link removed>
Notice how sitemap shows on black background, only 1st line is on white background.
This happens when I activate "Render sitemap by columns" in Joomla menu item parameters.
If this option is not activated, than JSitemap PRO renders on white background, like it should.

Black color is website default background, and white is content background.

It seems that template "doesn't know" how much height will JSitemap use.

I can semi-fix it by adding fixed height in this CSS rule in my CSS file:

#jmap_sitemap{
background-color: #FFF;
height:500px;
}

I also tried with height:auto; and height:100%; but this doesn't work.

But this is not a real solution because JSitemap height should be dynamically calculated and not fixed.

Do you have any suggestion how to make JSitemap PRO to render fully on white background with columns option activated?

Thanks,
Regards

rt_spectral template by RocketTheme
JSitemap PRO 2.3
Joomla 3.2.1
 
Logged Logged  
  The administrator has disabled public write access.
#305
John Dagelmore
Admin
Posts: 3722
User Online Now
Re:Problem with background color Karma: 79  
Hello, in this case the fix is easy, you need to add an overflow:hidden

#jmap_sitemap{
background-color: #FFF;
height:500px;
overflow: hidden;
}

In this way the height will be really auto adapted by css




Best regards

John
 
Logged Logged  
  The administrator has disabled public write access.
#306
Hrvoje Znaor
Fresh Boarder
Posts: 14
User Offline
Re:Problem with background color Karma: 1  
Hi

Your suggestion fixed issue with your component.

I also contacted RocketTheme as I noticed similar issue on other parts of website,
and they gave me suggestion how to fix it globally.

Marking thread as solved and removing link to website, because it's still in development phase.

Thanks for quick support

Regards
 
Logged Logged  
  The administrator has disabled public write access.
#307
John Dagelmore
Admin
Posts: 3722
User Online Now
Re:Problem with background color Karma: 79  
Thank you

Regards
 
Logged Logged  
  The administrator has disabled public write access.
Go to top