Need some info Need some info
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Need some info

Started by Texan78, March 11, 2005, 06:33:00 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Texan78

I need some help with some stuff and i looked all the through the FAQ.

First i need to center the menu under the logo and cant find where the table for the menu resides to do this. You can see what im talking about here: http://www.texascampingforum.com/gallery/index.php

Second, i also would like to make the text  for the Catagorys larger so it stands out, e.g. Camping,Fishing,Huntin, etc. you can see what im talking about from the links above. I have changed them but ti changes it across the baord and i just want that changed.

Lastly, can i use my user DB from my phpBB so mebers dont have to sign up twice.


Thanks in advance.

Joachim Müller

Quote from: Texan78 on March 11, 2005, 06:33:00 AM
I need some help with some stuff and i looked all the through the FAQ.
Reading the FAQ isn't enough, you should search the board before posting as well.

Quote from: Texan78 on March 11, 2005, 06:33:00 AM
First i need to center the menu under the logo and cant find where the table for the menu resides to do this. You can see what im talking about here: http://www.texascampingforum.com/gallery/index.php
Just edit themes/classic/template.html and add the necessary code to center the menu (btw. you shouldn't use the name "classic" for your theme, but start with a theme name of your own and leave the classic theme untouched), replace                 <table width="100%"align="center" border="0" cellspacing="0" cellpadding="0">
                       <tr>
                                <center><td><a href="http://www.texascampingforum.com"><img src="themes/classic/images/site_logo.png" alt="" border="0" /><br /></a></td></center>
                                <td width="100%" align="center">
                                        <h1> </h1>
                                        <h3> </h3><br />
                                        {MAIN_MENU}
                                </td>

                        </tr>
                </table>
(which has improperly nested tags as well) with                <table width="100%"align="center" border="0" cellspacing="0" cellpadding="0">
                       <tr>
                                <td align="center"><a href="http://www.texascampingforum.com"><img src="themes/classic/images/site_logo.png" alt="" border="0" /><br /></a></td>
                       </tr>
                       <tr>
                                <td width="100%" align="center">
                                        <h1> </h1>
                                        <h3> </h3><br />
                                        {MAIN_MENU}
                                </td>
                        </tr>
                </table>


Quote from: Texan78 on March 11, 2005, 06:33:00 AMSecond,...
We have a "one question per thread" policy you agreed to respect when signing up for your account on this forum. Please respect it in the future! >:(


Quote from: Texan78 on March 11, 2005, 06:33:00 AMi also would like to make the text  for the Catagorys larger so it stands out, e.g. Camping,Fishing,Huntin, etc. you can see what im talking about from the links above. I have changed them but ti changes it across the baord and i just want that changed.
Just edit your stylesheet (themes/classic/style.css) accordingly. The class to look out for is "catlink"

Quote from: Texan78 on March 11, 2005, 06:33:00 AM
Lastly, can i use my user DB from my phpBB so mebers dont have to sign up twice.
Yes, this process is called bridging. Read the documentation that comes with coppermine (and that is available online as well, see the "documentation" link at the very top of this screen) and take a look at the section "5. Integrating the script with your bulletin board

Joachim

Texan78

Thanks, 2 out of 3 down. catlink doesnt have option to chnage text size. This is what i have.

.catlink {
        display: block;
        margin-bottom: 2px;
}

.catlink a {
        text-decoration: underline;
        color: #000000;
}

.catlink a:hover {
        color: #000000;
        text-decoration: underline;
}



Now the only way i could get the text to chnage is with this code
}

table {
        font-size: 12px;
}


But that codes changes the size of the text acroos the board, and i dont want that. Just the categorys

kegobeer

Put your font declaration in .catlink instead of table.  See if that works.
Do not send me a private message unless I ask for one.  Make your post public so everyone can benefit.

There are no stupid questions
But there are a LOT of inquisitive idiots

Texan78