The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
3 posters

    How can I move forum name?

    Festina Lente
    Festina Lente
    Forumember


    Male Posts : 279
    Reputation : 20
    Language : English

    Solved How can I move forum name?

    Post by Festina Lente January 1st 2012, 10:56 pm

    How can I move the name of forum, description and subforum name a little to the right like on the screenshot below?

    How can I move forum name? 50jyfs
    Otto D'Slytherin
    Otto D'Slytherin
    New Member


    Posts : 8
    Reputation : 1
    Language : English

    Solved Re: How can I move forum name?

    Post by Otto D'Slytherin January 1st 2012, 11:35 pm

    Hello,

    Go to: General > Categories and forums > And click to this Edit in the forum if you want edit.

    In the "Forum name" you add this code:
    <p align="right"> YOUR FORUM NAME </p>

    In the "Description" you add this code:
    <p align="right"> DESCRIPTION CONTENT </p>

    Did it help? if yes tell.
    Otto D'Slytherin
    Festina Lente
    Festina Lente
    Forumember


    Male Posts : 279
    Reputation : 20
    Language : English

    Solved Re: How can I move forum name?

    Post by Festina Lente January 1st 2012, 11:45 pm

    I wanna move the names a little to the right... these codes move them totally to the right
    Otto D'Slytherin
    Otto D'Slytherin
    New Member


    Posts : 8
    Reputation : 1
    Language : English

    Solved Re: How can I move forum name?

    Post by Otto D'Slytherin January 1st 2012, 11:52 pm

    Hello,

    Do the same process that I mentioned above, just change the code for this:
    <p align="center"> YOUR FORUM NAME/ DESCRIPTION </p>

    Did it help? if yes tell.
    Otto D'Slytherin
    Festina Lente
    Festina Lente
    Forumember


    Male Posts : 279
    Reputation : 20
    Language : English

    Solved Re: How can I move forum name?

    Post by Festina Lente January 2nd 2012, 12:00 am

    If I set "center" the name will be at the center... I wanna move the names just a little from the left to the right
    Nera.
    Nera.
    Energetic


    Female Posts : 7078
    Reputation : 2017
    Language : English
    Location : -

    Solved Re: How can I move forum name?

    Post by Nera. January 2nd 2012, 12:04 am

    Hi Johnny,

    Can you post your forum link?
    Otto D'Slytherin
    Otto D'Slytherin
    New Member


    Posts : 8
    Reputation : 1
    Language : English

    Solved Re: How can I move forum name?

    Post by Otto D'Slytherin January 2nd 2012, 12:07 am

    Hello,

    You want the text to be equal to this photo, that location?4
    How can I move forum name? Sem_ta36

    Otto D'Slytherin
    Festina Lente
    Festina Lente
    Forumember


    Male Posts : 279
    Reputation : 20
    Language : English

    Solved Re: How can I move forum name?

    Post by Festina Lente January 2nd 2012, 12:15 am

    This is the link of my test forum... look at the forum Uređenje stana and Moj Blog... I moved Uređenje stana a little but I'm not satisfied 'cause I did it on my way... is there a CSS code for doing that?

    http://training.serbianforum.info/
    Nera.
    Nera.
    Energetic


    Female Posts : 7078
    Reputation : 2017
    Language : English
    Location : -

    Solved Re: How can I move forum name?

    Post by Nera. January 2nd 2012, 12:18 am

    Yes:

    Code:
    a.forumlink {
        padding-left: 10px;
    }

    Change the number to fit your wishes.
    I'll check the variables for description and subforum cause of the same classes for them you'll have to do template changes.
    Festina Lente
    Festina Lente
    Forumember


    Male Posts : 279
    Reputation : 20
    Language : English

    Solved Re: How can I move forum name?

    Post by Festina Lente January 2nd 2012, 12:25 am

    OK Nera, this worksHow can I move forum name? 3630314092... I'll be waiting for your answer for description and subforum
    Nera.
    Nera.
    Energetic


    Female Posts : 7078
    Reputation : 2017
    Language : English
    Location : -

    Solved Re: How can I move forum name?

    Post by Nera. January 2nd 2012, 12:29 am

    Go to your index_box template and find this:

    Code:
             <span class="genmed">{catrow.forumrow.FORUM_DESC}</span>
             <span class="gensmall">
                <!-- BEGIN switch_moderators_links -->
                {catrow.forumrow.switch_moderators_links.L_MODERATOR}{catrow.forumrow.switch_moderators_links.MODERATORS}
                <!-- END switch_moderators_links -->
                            {catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}

    Replace it with this:

    Code:
    <span class="novo genmed">{catrow.forumrow.FORUM_DESC}</span>
             <span class="gensmall">
                <!-- BEGIN switch_moderators_links -->
                {catrow.forumrow.switch_moderators_links.L_MODERATOR}{catrow.forumrow.switch_moderators_links.MODERATORS}
                <!-- END switch_moderators_links -->
                              <span class="novo">{catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}</span>

    Than add this to CSS:

    Code:
    span.novo {
        padding-left: 10px;
    }

    Change the number in CSS if you want. Don't forget to publish template on the green cross. Just tried it, works.
    Otto D'Slytherin
    Otto D'Slytherin
    New Member


    Posts : 8
    Reputation : 1
    Language : English

    Solved Re: How can I move forum name?

    Post by Otto D'Slytherin January 2nd 2012, 12:35 am

    Hello,

    Go to: General > Categories and forums > And click to this Edit in the forum if you want edit.

    In the "Description" you add this code:
    Code:
    <div style="margin-left: 60px;"> YOUR DESCRIPTION </div>
    Festina Lente
    Festina Lente
    Forumember


    Male Posts : 279
    Reputation : 20
    Language : English

    Solved Re: How can I move forum name?

    Post by Festina Lente January 2nd 2012, 12:40 am

    Tnx NeraHow can I move forum name? 2529430738
    Nera.
    Nera.
    Energetic


    Female Posts : 7078
    Reputation : 2017
    Language : English
    Location : -

    Solved Re: How can I move forum name?

    Post by Nera. January 2nd 2012, 12:41 am

    Welcy.

    Topic Solved & Locked

      Current date/time is September 22nd 2024, 5:33 pm