» Welcome to the Gopher Lawn Care Business Forum
BB Code
BB code is a set of tags based on the HTML language that you may already be familiar with.
They allow you to add formatting to your messages in the same way as HTML does,
but have a simpler syntax and will never break the layout of the pages you are viewing.
The ability to use BB code is set on a forum-by-forum basis by the administrator,
so you should check the forum rules when you post a new message.
Below is a list of the BB code tags you can use to format your messages.
BB Code List
[b] , [i] , [u]
Bold / Italic / Underline
[color]
Color
[size]
Size
[font]
Font
[highlight]
Highlight
[left] , [right] , [center]
Left / Right / Center
[indent]
Indent
[email]
Email Linking
[url]
URL Hyperlinking
[thread]
Thread Linking
[post]
Post Linking
[list]
Bulleted Lists / Advanced Lists
[img]
Images
[code]
Code
[php]
PHP Code
[html]
HTML Code
[quote]
Quote
[noparse]
Stop BB Code Parsing
[attach]
Attachment
[youtube]
Youtube
[youtube-playlist]
Youtube Playlist
Incorrect BB Code Usage:
[url] www.example.com [/url] - don't put spaces between the bracketed code and the text you are applying the code to.
[email] myname@domain.com[email] - the end brackets must include a forward slash ([/email] )
Bold / Italic / Underline
The [b], [i] and [u] tags allow you to create text that is bold, italic and underlined.
Usage
[b]value [/b]
[i]value [/i]
[u]value [/u]
Example Usage
[b]this text is bold[/b]
[i]this text is italic[/i]
[u]this text is underlined[/u]
Example Output
this text is bold
this text is italic
this text is underlined
Color
The [color] tag allows you to change the color of your text.
Usage
[color=Option ]value [/color]
Example Usage
[color=blue]this text is blue[/color]
Example Output
this text is blue
Size
The [size] tag allows you to change the size of your text.
Usage
[size=Option ]value [/size]
Example Usage
[size=+2]this text is two sizes larger than normal[/size]
Example Output
this text is two sizes larger than normal
Font
The [font] tag allows you to change the font of your text.
Usage
[font=Option ]value [/font]
Example Usage
[font=courier]this text is in the courier font[/font]
Example Output
this text is in the courier font
Highlight
The [highlight] tag allows you to emphasize your text.
Usage
[highlight]value [/highlight]
Example Usage
[highlight]this text is highlighted[/highlight]
Example Output
this text is highlighted
Left / Right / Center
The [left], [right] and [center] tags allow you to change the alignment of your text.
Usage
[left]value [/left]
[center]value [/center]
[right]value [/right]
Example Usage
[left]this text is left-aligned[/left]
[center]this text is center-aligned[/center]
[right]this text is right-aligned[/right]
Example Output
this text is left-aligned
this text is center-aligned
this text is right-aligned
Indent
The [indent] tag allows you to indent your text.
Usage
[indent]value [/indent]
Example Usage
[indent]this text is indented[/indent]
Example Output
this text is indented
Email Linking
The [email] tag allows you to link to an email address. You can include an optional parameter to 'name' your link.
Usage
[email]value [/email]
[email=Option ]value [/email]
Example Usage
[email]j.doe@example.com[/email]
[email=j.doe@example.com]Click Here to Email Me[/email]
Example Output
j.doe@example.com
Click Here to Email Me
URL Hyperlinking
The [url] tag allows you to link to other websites and files. You can include an optional parameter to 'name' your link.
Usage
[url]value [/url]
[url=Option ]value [/url]
Example Usage
[url]http://www.gopherforum.com[/url]
[url=http://www.gopherforum.com]GopherHaul Landscaping & Lawn Care Business Marketing Forum[/url]
Example Output
http://www.gopherforum.com
GopherHaul Landscaping & Lawn Care Business Marketing Forum
Thread Linking
The [thread] tag allows you to link to threads by specifying the thread id. You can include an optional parameter to 'name' your link.
Usage
[thread]threadid [/thread]
[thread=threadid ]value [/thread]
Example Usage
[thread]42918[/thread]
[thread=42918]Click Me![/thread]
(Note: The threadid/postid is just an example and may not link to a valid thread/post.)
Example Output
http://www.gopherforum.com/showthread.php?t=42918
Click Me!
Post Linking
The [post] tag allows you to link to posts by specifying the post id. You can include an optional parameter to 'name' your link.
Usage
[post]postid [/post]
[post=postid ]value [/post]
Example Usage
[post]269302[/post]
[post=269302]Click Me![/post]
(Note: The threadid/postid is just an example and may not link to a valid thread/post.)
Example Output
http://www.gopherforum.com/showthread.php?p=269302#post269302
Click Me!
Bulleted Lists
The [list] tag allows you to create simple, bulleted lists without specifying an option. Within the value portion, each bullet is denoted by the [*] tag.
Usage
[list]value [/list]
Example Usage
[list] [*]list item 1 [*]list item 2 [/list]
Example Output
Advanced Lists
The [list] tag allows you to create advanced lists by specifying an option. The option should have a value of 1 (for a numbered list) or A (for an alphabetic with capital letters list) or a (for an alphabetic with lowercase letters list) or I (for a numbered with capital Roman numeral list) or i (for a numbered with small Roman numeral list).
Usage
[list=Option ]value [/list]
Example Usage
[list=1] [*]list item 1 [*]list item 2 [/list] [list=a] [*]list item 1 [*]list item 2 [/list]
Example Output
list item 1 list item 2 list item 1 list item 2
Images
The [img] tag allows you to embed images within your posts. You can also combine this tag with the [url] tag to make images become links.
Usage
[img]value [/img]
Example Usage
[img]http://www.gopherforum.com/images/statusicon/forum_new.gif[/img] (Not linked)
[url=http://www.example.com] [img]http://www.gopherforum.com/images/statusicon/forum_new.gif[/img] [/url] (Linked)
Example Output
(Not linked)
(Linked)
Code
The [code] tag switches to a fixed-width (monospace) font and preserves all spacing.
Usage
[code]value [/code]
Example Usage
[code]
<script type="text/javascript">
<!--
alert("Hello world!");
//-->
</script>
[/code]
Example Output
Code:
<script type="text/javascript">
<!**
alert("Hello world!");
//**>
</script>
PHP Code
The [php] tag performs the same function as the [code] tag, but also adds syntax highlighting for PHP code. Although it is designed for PHP, it may correctly highlight some other C-like languages.
Usage
[php]value [/php]
Example Usage
[php]
$myvar = 'Hello World!';
for ($ i = 0; $i < 10; $i++)
{
echo $myvar . "\n";
}
[/php]
Example Output
PHP Code:
$myvar = 'Hello World!' ; for ( $i = 0 ; $i < 10 ; $i ++) { echo $myvar . "\n" ; }
HTML Code
The [html] tag allows you to perform syntax highlighting for HTML code.
Usage
[html]value [/html]
Example Usage
[html] <img src="image.gif" alt="image" /> <a href="testing.html" target="_blank">Testing</a> [/html]
Example Output
HTML Code:
<img src="image.gif" alt="image" />
<a href="testing.html" target="_blank" > Testing</a>
Quote
The [quote] tag allows you to attribute text to someone else.
Usage
[quote]Quote [/quote]
[quote=User Name ]value [/quote]
Example Usage
[quote]Lorem ipsum dolor sit amet[/quote]
[quote=John Doe]Lorem ipsum dolor sit amet[/quote]
[quote=John Doe;126940]Lorem ipsum dolor sit amet[/quote]
Example Output
Quote:
Lorem ipsum dolor sit amet
Quote:
Originally Posted by John Doe
Lorem ipsum dolor sit amet
Quote:
Originally Posted by
John Doe
Lorem ipsum dolor sit amet
Stop BB Code Parsing
The [noparse] tag allows you to stop the parsing of BB code.
Usage
[noparse][b]value[/b] [/noparse]
Example Usage
[noparse][b]Lorem ipsum dolor sit amet[/b][/noparse]
Example Output
[b]Lorem ipsum dolor sit amet[/b]
Attachment
The [attach] tag allows you to display an attachment in your post rather than at the bottom. It will only display attachments that belong to the post in which it is utilized.
Usage
[attach]attachmentid [/attach]
Example Usage
[attach]12345[/attach]
Example Output
Youtube
Usage
[youtube]value [/youtube]
Example Usage
[youtube]JFwCCL0Vh6U[/youtube]
Example Output
Youtube Playlist
Usage
[youtube-playlist]value [/youtube-playlist]
Example Usage
[youtube-playlist]9E64B0B5209FD80E[/youtube-playlist]
Example Output
» Recent Threads
Rating Title, Username, & Date
Last Post
Replies
Views
Truck trimmer racks
SECTLANDSCAPING
06-16-2012 05:56 PM
19
3,035
no-compete agreement
CDLAWNCARE
Yesterday 12:45 AM
4
144
ethics
t-10yrs2retire
Today 01:47 PM
0
14
Very overwhelmed
xandrew245x
Today 09:31 AM
2
61
Bi-weekly question
schnide
05-15-2013 10:58 AM
12
439
Trimmer Line
Shark1611
05-16-2013 07:56 PM
9
278
Hello to all!
frankygarza
Today 08:59 AM
0
26
New Toro Super Recycler...
Hedgemaster
03-20-2011 12:55 AM
134
25,500
It's FRIDAY!!!
CHEESE2009
05-17-2013 05:18 AM
3
194
Yesterday, I had a...
LawnBoy0311
04-25-2013 05:30 AM
10
824
When to mow, collect,...
cuttingedgeron
04-05-2013 01:06 PM
8
675
Missing small amount of...
xandrew245x
05-13-2013 04:30 PM
Yesterday
07:57 PM
by
MBLC
17
563
crossroads
djm2013
03-17-2013 08:43 AM
48
3,953
The customer is ALWAYS...
cutnuplawnservice
Yesterday 08:28 AM
1
145
How I found TOO Many...
BLC7
01-11-2013 02:12 PM
62
4,598
trailer leaf vac.
t-10yrs2retire
05-17-2013 10:44 AM
2
167
Radio advertising
CDLAWNCARE
05-04-2013 06:26 PM
5
599
New Beginner here...
LawnCareProfessional
05-14-2013 12:05 AM
05-17-2013
12:00 PM
by
Steve
8
496
Flower bed cultivation...
Emar
05-15-2013 04:41 PM
05-17-2013
11:42 AM
by
Steve
5
257
Code violations
Greg'slawnandlandscape
05-16-2013 12:11 PM
05-17-2013
11:39 AM
by
Steve
8
293
Moss in grass in the...
tk4454
05-16-2013 11:19 PM
05-17-2013
11:36 AM
by
Steve
2
167
problem #2..springs in...
t-10yrs2retire
05-11-2013 09:03 AM
05-17-2013
11:34 AM
by
Steve
8
593
Installing grass seed
thom
05-05-2013 06:35 PM
05-17-2013
11:29 AM
by
Steve
7
736
Hoping someone can help.
jasonw
05-10-2013 09:19 AM
05-17-2013
11:25 AM
by
Steve
9
557
1st video.
Grass Doctor
05-15-2013 05:52 PM
7
292
Undercutters
jhamilton60@yahoo.com
05-15-2013 08:17 PM
12
364
help pricing sod job
Jayls
05-15-2013 01:03 PM
05-17-2013
07:06 AM
by
Emar
5
315
Mulching
jeffcs
05-14-2013 02:17 PM
6
393
Unreasonable Requests
brian'slawncare
05-06-2013 06:07 PM
29
1,458
Things are looking...
Jayls
05-14-2013 09:28 AM
05-16-2013
11:43 AM
by
Steve
7
398
Say Hello !!!
Steve
03-19-2007 11:18 AM
05-16-2013
11:22 AM
by
Steve
1,112
186,356
White Riding Mower Help
osbornl1
05-09-2013 12:17 PM
4
550
At Last!
Matther777
05-02-2013 05:51 PM
17
1,138
Brush Mower
SECTLANDSCAPING
05-13-2013 06:04 PM
05-15-2013
11:43 AM
by
Steve
7
394
Court houses....
SouthallMowing
05-13-2013 11:42 PM
7
398
Hello Everyone
hemiman
03-16-2013 06:45 PM
14
1,743
Need Advice
Tony317
05-13-2013 10:16 PM
05-14-2013
01:17 PM
by
Steve
2
328
Starting up and using...
Southern83fire
05-12-2013 08:57 PM
05-14-2013
01:14 PM
by
Steve
6
478
problem #1...I think I...
t-10yrs2retire
05-11-2013 08:52 AM
05-14-2013
12:58 PM
by
Steve
7
567
Round Up in FL
JRB6250
05-13-2013 03:25 PM
05-14-2013
12:56 PM
by
Steve
3
367
Seo
superyards
05-10-2013 10:19 AM
05-14-2013
12:50 PM
by
Steve
7
563
Rubbing a Car
SNethercutt
04-28-2013 11:51 PM
14
1,107
Help! Need opinions
LawnBoy0311
05-10-2013 11:26 AM
16
781
A new way to quote?
LawnBoy0311
05-07-2013 06:12 PM
21
1,122
Two for Two - Woo-Hoo!...
Hedgemaster
04-18-2011 09:37 PM
186
36,367
Beginner question. Lawn...
WarriorLandscaping25
04-21-2013 07:38 PM
05-13-2013
02:16 PM
by
Steve
10
1,304
Belt tapping against...
donslawns
05-12-2013 10:56 AM
05-13-2013
01:08 PM
by
Steve
2
390
Help!
amfine1996
05-11-2013 02:42 PM
05-13-2013
11:51 AM
by
Steve
1
402
$162.00
stevef1201
05-03-2013 10:58 AM
05-13-2013
11:43 AM
by
Steve
13
1,029
feedback please
stevef1201
05-05-2013 08:04 PM
05-13-2013
07:27 AM
by
jymie
9
788
» Lawn Care Business Discussion Categories
Read more about these lawn care business marketing categories.
General Business:
GopherHaul ,
Podcast
How to Estimate - Services To Offer:
Aeration ,
Apartment / Condo ,
bed edging ,
Color Change Plantings ,
Dethatching ,
Edging ,
Fall Leaf Cleanups ,
Foreclosed Homes ,
Gutter Cleaning ,
Hardscaping ,
Hedge Trimming ,
Home Safety Inspection ,
Irrigation ,
Landscape Project ,
Lawn Mower Repair ,
Mowing ,
Mulch Jobs ,
Outdoor decoration ,
Parking Lot Cleanups ,
Pet Waste Removal ,
Pressure Washing ,
Property Management ,
Snow plowing ,
Stump Grinding ,
Tree Removal
How to Estimate Jobs:
Lawn Care Business:
Barter ,
Bikini Lawn Care ,
Business Failure ,
Business loan ,
Business Plan ,
Debt ,
Debt Collection ,
Estimate or Proposal Form ,
Franchise ,
Fuel surcharge ,
How to sell ,
Insurance ,
Job Tracking ,
Lawn Care Contract ,
Lawn Care Customer Survey ,
Lawn Care Uniform ,
Lawn Care Videos ,
Operational Costs ,
Overhead Costs ,
Prepay ,
Pricing ,
Start up ,
Tiger Time Lawn Care ,
Lawn Care Business Books:
Lawn Care Customers:
Buying customers ,
Commercial Customers ,
Customer Retention ,
How to get ,
Residential Customers
Lawn Care Employees:
1 Man Lawn Crew ,
Bonus Pay ,
training ,
Your First Employee
lawn care equipment :
bed edger ,
Lawn Care Truck ,
Leaf Sweeper ,
Mower ,
New Arrival ,
Trailer ,
UltraVac
Lawn Care Marketing:
Billboard ,
Brochure ,
Business Card ,
Community Projects To Promote Your Business ,
Coupons ,
Cross Promotion / Synergy ,
Direct Mail ,
Door hanger ,
door to door ,
Free Giveaway Contest ,
Free Lawn Care Flyer Template ,
Gift or Discount Cards ,
home show ,
Internet ,
Lawn Care Business Sales Letter ,
Lawn Care Logo ,
Lawn Care Marketing ,
Lawn Care Truck & Trailer Signs ,
Lawn Care Website ,
Lawn Signs ,
Magazine Ad ,
Magnets ,
Mailing list ,
Marketing on Craigslist.com ,
Newspaper Ads ,
Parade ,
Postcards ,
publicity stunt ,
Referrals ,
Review My Lawn Care Marketing Material ,
t-shirt ,
Welcoming Kit ,
Word Of Mouth
Seasonal Promotion Ideas:
4th of July ,
Armed Forces Day ,
Christmas ,
Election Day ,
Fall ,
Halloween ,
Memorial Day ,
Spring ,
Summer ,
Valentine's Day ,
Veteran's Day ,
Winter :
Software:
Estimation Software ,
Landscaper Software ,
Landscaping Business Software ,
Landscaping Estimate Software ,
Landscaping Software ,
Lawn Care Business Software ,
Lawn Care Estimating Software ,
Lawn Care Software ,
Mowing Software
Uncategorized:
Video:
Website:
Search Engine Optimization
» Site Navigation
» Lawn Care Marketing
» Product-Categories