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.

width tag "code" and "quote"

4 posters

Go down

width tag "code" and "quote" Empty width tag "code" and "quote"

Post by Lestry 27.04.10 16:06

how to adjust the width of "code" and "quote" scratch

width tag "code" and "quote" Screen19
avatar
Lestry
Forumember

Posts : 41
Reputation : 0
Language : Slovensky

Back to top Go down

width tag "code" and "quote" Empty Re: width tag "code" and "quote"

Post by Guest 27.04.10 19:07

which is your forum version ? (phbb2 , phbb3 , punbb or invision ? different codes in each version Laughing )
avatar
Guest
Guest


Back to top Go down

width tag "code" and "quote" Empty Re: width tag "code" and "quote"

Post by Bleachzor 27.04.10 20:59

If you dont know what version you have then just send us a link to your forum.
Bleachzor
Bleachzor
Forumember

Posts : 211
Reputation : -10
Language : Dutch

Back to top Go down

width tag "code" and "quote" Empty Re: width tag "code" and "quote"

Post by Lestry 28.04.10 1:09

MaNkY wrote:which is your forum version ? (phbb2 , phbb3 , punbb or invision ? different codes in each version Laughing )

phbb2 Very Happy
avatar
Lestry
Forumember

Posts : 41
Reputation : 0
Language : Slovensky

Back to top Go down

width tag "code" and "quote" Empty Re: width tag "code" and "quote"

Post by kirk 29.04.10 11:08

i dont even understand what you are trying to do?
Please explain a Lil more.
thanks

Code:
 test left

Code:
 test center

Code:
 test right

Code:
[left][code]test left [/code] [/left]

[center][code]test center [/code] [/center]

[right][code][test right [/code] [/right]

test left

test center

test right

Code:
[left][quote]test left [/quote] [/left]

[center][quote]test center [/quote] [/center]

[right][quote][test right [/quote] [/right]

i think what you want to do add the html tags for the position you want them to be at in your post message template.. then you have to find where it is and add the tags to it then publish.
i can find it for you and set it up i just need to know this is what you are asking?


these will be the tags in html to add to the template.


Code:

<div align="left"> test left  </div>

<div style="margin:auto;text-align:center;width:100%"> test center  </div>

<div align="right">  test right  </div>

kirk
kirk
Forumaster

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

Back to top Go down

width tag "code" and "quote" Empty Re: width tag "code" and "quote"

Post by Lestry 29.04.10 14:07

Shows me the table "code" and "quote" in the Comp stredea narrow in width!
Therefore, I give them to the left and expand their
avatar
Lestry
Forumember

Posts : 41
Reputation : 0
Language : Slovensky

Back to top Go down

width tag "code" and "quote" Empty Re: width tag "code" and "quote"

Post by kirk 29.04.10 16:49

i guess you can try this.
just adjest the width for how you want it.
but you will still have to find where the quote and code features are in the post message template then add the tags to it.

i can try to find it for you. but i'll have to do it a lil latter i dont have the time to look right this second.

or if you find it first try this.

Code:
 

<div style="margin:auto;text-align:left;width:100%"> test left  </div>

<div style="margin:auto;text-align:right;width:100%"> test left  </div>

<div style="margin:auto;text-align:center;width:100%"> test left  </div>

 
kirk
kirk
Forumaster

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

Back to top Go down

width tag "code" and "quote" Empty Re: width tag "code" and "quote"

Post by Lestry 30.04.10 1:39

but I need to change this:
Code:
.code{
    font-family: Courier,'CourierNew',sans-serif;
    font-size: 11px;
    color: #ffffff;
   background-color: #000000;
    border: #000000;
    border-style: solid;
   border-left-width: 1px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px}

.quote{
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 11px;
    color: #ffffff;
    line-height: 125%;
   background-color: #000000;
    border: #000000;
    border-style: solid;
   border-left-width: 1px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px}

so to me it changed all the "code" and "quote"!
avatar
Lestry
Forumember

Posts : 41
Reputation : 0
Language : Slovensky

Back to top Go down

width tag "code" and "quote" Empty Re: width tag "code" and "quote"

Post by mex2 30.04.10 9:26

Try this:



Code:
.code{
    font-family: Courier,'CourierNew',sans-serif;
    font-size: 11px;
width: 100%;
    color: #ffffff;
  background-color: #000000;
    border: #000000;
    border-style: solid;
  border-left-width: 1px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px}

.quote{
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 11px;
    color: #ffffff;
width: 100%;
    line-height: 125%;
  background-color: #000000;
    border: #000000;
    border-style: solid;
  border-left-width: 1px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px}
mex2
mex2
Forumember

Posts : 177
Reputation : 1
Language : English

Back to top Go down

width tag "code" and "quote" Empty Re: width tag "code" and "quote"

Post by kirk 30.04.10 19:31

Lestry wrote:but I need to change this:
Code:
.code{
    font-family: Courier,'CourierNew',sans-serif;
    font-size: 11px;
    color: #ffffff;
   background-color: #000000;
    border: #000000;
    border-style: solid;
   border-left-width: 1px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px}

.quote{
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 11px;
    color: #ffffff;
    line-height: 125%;
   background-color: #000000;
    border: #000000;
    border-style: solid;
   border-left-width: 1px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px}

so to me it changed all the "code" and "quote"!

well you never said you where using css. the way i have it is to rap the the code parts in the template.. try mex's way. css is easier to do then haveing to go dig through the whole template.

other then that we dont know what dimensions you want.. just adjust it until you get what you like and that should be it.

if not just come back we'll get straight one way or another.

MaNkY wrote:which is your forum version ? (phbb2 , phbb3 , punbb or invision ? different codes in each version Laughing )

yeah thats why i would have just dont it in the template since he uis useing phpbb2
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