"Conference Site Management">"website management"
but couldn't find the options.
Then I tried to do it with .css file. I use "view source" from IE and get the generated html code for font size:
- Code: Select all
<div id="sidebar">
<div class="block">
......
</div>
......
<div class="block">
<span class="blockTitle">Font Size</span>
......
</div>
</div>
From the common.css file I found the corresponding code:
- Code: Select all
#sidebar div.block {
font-size: 1em;
padding-bottom: 1.5em;
}
However, if I add the
- Code: Select all
display: none
With .css file I cannot control the id of the "font size" block. So do I need to modify the .php files which generating the html code? Or I can do it in other way?
I also want to add some link in the main page, seems this is the same issue as removing some part.
Waiting for ideas and suggestions. Thank you![/quote]
