Hi
Is it possible to have a sidebox without a heading, and also without the heading background - so just the body or picture?
Thank you for your help
Kind regards
S
Hi
Is it possible to have a sidebox without a heading, and also without the heading background - so just the body or picture?
Thank you for your help
Kind regards
S
Yes. Depending on which sidebox you're talking about, most have an id of, for example, #informationHeading for the Information sidebox. You can turn it off in the stylesheet:
#informationHeading {display: none;}
or remove the header code from that sidebox's template file.
Anyone?
You should be able to use
#blanksideboxHeading {display: none;}
as long as you have not renamed the sidebox.
If you want to eliminate the heading from the output completely, you can redefine it to '' (two single quotes) in the define file:
define('BOX_HEADING_BLANK_SIDEBOX', 'Blank Sidebox Header');
define('BOX_HEADING_BLANK_SIDEBOX', '');
I have all of my headings hidden, but I want to show the featured sidebox heading. How do I show just the featured box heading? I have tried several different combinations, but is seems like it is being hidden because it falls under the h3.leftBoxHeading display:none
thanks!
squ ishytu shy.com
Put this after the h3.leftBoxHeading rule to override it for just one heading:
#featuredHeading {display: block;}
I can do the heading but the container (border around sidebox) on the bannerbox and bannerboxall ids is what I am trying to display: none.
Thanks!
Let's see your site to give the most accurate advice...
In general, you can add a rule for the particular sidebox id, like
#bannerbox {border: none;}
or
#bannerboxContent {border: none;}