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.

I have a few html and css questions any help?

3 posters

Go down

Solved I have a few html and css questions any help?

Post by Smeyer40 September 10th 2012, 8:34 pm

Ok to start things off i'm using punbb. My 1st question i want to change the font of my Navigation bar. With out changing the font of the rest of the forum. Here is a screen shot of my nav bar I have a few html and css questions any help? D27c7d21da3a5e40731503c35e31ce44 i want to change the font to Xirod.

My next question is a 2 in 1 i want to change the text marked in white and remove the text in red. It is in the picture what i want to do I have a few html and css questions any help? 62529a02f41476925ecb4a12c00ffd42

Thanks for any help


Last edited by Smeyer40 on September 10th 2012, 9:52 pm; edited 1 time in total
avatar
Smeyer40
New Member

Posts : 9
Reputation : 1
Language : English

Back to top Go down

Solved Re: I have a few html and css questions any help?

Post by Sanket September 10th 2012, 8:39 pm

1) Add this to your css.
Code:
#pun-navlinks a{
font-family: times new roman !important;
}

2) General Discussion, Introduce yourself, Nevo Partners are categories which you created. Delete them & they will be gone.
That text forum if at all can be edited, it will be just a single text everywhere.
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Solved Re: I have a few html and css questions any help?

Post by Smeyer40 September 10th 2012, 8:46 pm

I don't want to delete the forum just that text there
avatar
Smeyer40
New Member

Posts : 9
Reputation : 1
Language : English

Back to top Go down

Solved Re: I have a few html and css questions any help?

Post by Sanket September 10th 2012, 8:47 pm

Smeyer40 wrote:I don't want to delete the forum just that text there
The text forum, if edited will be changed. I never said delete. Confused
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Solved Re: I have a few html and css questions any help?

Post by Smeyer40 September 10th 2012, 8:55 pm


Sanket wrote:2) General Discussion, Introduce yourself, Nevo Partners are categories which you created. Delete them & they will be gone.
That text forum if at all can be edited, it will be just a single text everywhere.
Now for where it says forum is it possible to rename the text to something i want in css. And above the forum it has the forum name can that be removed just that text. I used a html code to hide that text but it also hide the link so no one could click into the forum.
avatar
Smeyer40
New Member

Posts : 9
Reputation : 1
Language : English

Back to top Go down

Solved Re: I have a few html and css questions any help?

Post by Sanket September 10th 2012, 8:59 pm

Now for where it says forum is it possible to rename the text to something i want in css.
You can edit where it says forum via Template editing & not via css.



And above the forum it has the forum name can that be removed just that text. I used a html code to hide that text but it also hide the link so no one could click into the forum.
Are you sure those are forums? They look like categories to me.
Please check these threads.
https://help.forumotion.com/t8322-differences-between-forum-and-category
https://help.forumotion.com/t3313-categories-and-forums-creation-and-appearance
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Solved Re: I have a few html and css questions any help?

Post by Smeyer40 September 10th 2012, 9:06 pm

Yea those are forums with sub forums and what template needs to be edited to change the text "Forum".

And i just want to remove the text that has the red box around it I'm guessing that will be in template as well but i'm not sure I have a few html and css questions any help? 9770818cde78bb6f86efe4ae2cb455aa

And do you have the css code to change the font size in the Nav bar
avatar
Smeyer40
New Member

Posts : 9
Reputation : 1
Language : English

Back to top Go down

Solved Re: I have a few html and css questions any help?

Post by Sanket September 10th 2012, 9:18 pm

The template that needs editing
Display>templates>General> index_box
Thats the one for the forum i believe.
Code:
<th class="tcl">{L_FORUM}</th>

General Discussion if needs to be removed you should not add it in the first place. I don't really understand what you are trying to do.

For the font size
Code:
#pun-navlinks a{
font-size: 12px !important;
}


Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Solved Re: I have a few html and css questions any help?

Post by Smeyer40 September 10th 2012, 9:30 pm

Look at these to pictures an you might see what i mean. I edited the page source code with firebug and removed the text like that to show you what i mean. Its not remove permanent like i want. and this is not just for the one forum its for all
Before:I have a few html and css questions any help? B856fac0d6c6dac401f17bdee3337173

After i remove the text using firebug:I have a few html and css questions any help? 2016da99847439746b9a51e5496ba766

While looking at the page source code with firebug this is the html code i removed
<h2>
<font color="#2497DE">General Discussion</font>
</h2>




avatar
Smeyer40
New Member

Posts : 9
Reputation : 1
Language : English

Back to top Go down

Solved Answers

Post by Smeyer40 September 10th 2012, 9:48 pm

Hey i figured out how to remove that text that i was wanting it was under the same template i had to edit one thing to do it look for
Code:
<div class="main-head">
         <div class="page-title">{catrow.tablehead.L_FORUM}</div>

And change it to
Code:
<div class="main-head">
         <div class="page-title">{catrow.tablehead.L_}</div>

And for others looking in this forum for the same answers for a punbb the answers are
How to change the Nav bar font size
Code:
#pun-navlinks a{
font-size: FONTSIZEpx !important;
}
Replace FONTSIZE with any number size you want(That Forumotion allows)


How to change Nav bar font
Code:
#pun-navlinks a{
font-family: YOURFONT; !important;
Replace YOURFONT with the font name you want

Topic is Solved Thanks to Sanket





avatar
Smeyer40
New Member

Posts : 9
Reputation : 1
Language : English

Back to top Go down

Solved Re: I have a few html and css questions any help?

Post by kirk September 10th 2012, 9:54 pm

Since the topic was marked solved i will now archive

Topic Solved & Locked
kirk
kirk
Forumaster

Male Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum