Support Forum

Advanced Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
general-topic
Add link to topic
Avatar
Michaela Rose
UK
Member
Free Members
sp_UserOfflineSmall Offline
Apr 4, 2012 - 9:04 am

I want users to be able to add links to topics and replies. I have checked in settings and links are enabled but there is no way to do that on the forum. I see above here on your forum, you have the usual toolbar to alter font/add links etc. How do I get that on mine please? Thank you.

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Apr 4, 2012 - 9:24 am

You need to download and install our TinyMCE Editor plugin. There is a link to the plugins on the download page. if you need some advice on how to do it then you can find that here: http://codex.simple-press.com/.....g-plugins/

andy-signature.png
YELLOW
SWORDFISH
Avatar
Michaela Rose
UK
Member
Free Members
sp_UserOfflineSmall Offline
Apr 4, 2012 - 9:38 am

Oh, that's what TinyMCE means! Thanks, will do that. Out of interest, what overlay have you got on this forum please, I can only find bright red and this is a bit softer?

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Apr 4, 2012 - 11:37 am

smile I have no idea why it is called TinyMCE but it is the same one that Wp uses for post editing.

Our theme here is an adapted one and CSS only version but I believe originated with the red overlay in the default theme.

andy-signature.png
YELLOW
SWORDFISH
Avatar
Michaela Rose
UK
Member
Free Members
sp_UserOfflineSmall Offline
Apr 4, 2012 - 11:39 am

Thanks, done is successfully now. I will have to learn how to do a CSS one at some point then. Thank you.

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Apr 4, 2012 - 12:21 pm

I am pretty sure that all Brandon did was adjust the button colours but I could be wrong, He might be able to explain more when he is on line.

andy-signature.png
YELLOW
SWORDFISH
Avatar
Brandon
U.S.
SP Wrangler
Free Members
sp_UserOfflineSmall Offline
Apr 4, 2012 - 1:11 pm

The buttons are pretty much the main difference.  The red background was changed slightly from #99000 to 8B1A1A to match the blog color but it's hard for my eyes to see that difference. 🙂

There were some changes to the profiles menu that were tested with this theme and then added to the core themes. If you are using the latest themes those changes should be in there.

Basically you can change the button color with one entry in the overlay file. If you want to do that I can point it out.

Avatar
Michaela Rose
UK
Member
Free Members
sp_UserOfflineSmall Offline
Apr 4, 2012 - 1:52 pm

Thanks Brandon. I only got this plug in a week or so ago but can't see anything in profiles. Can you pls tell me how to change the colour then? Thank you

Avatar
Brandon
U.S.
SP Wrangler
Free Members
sp_UserOfflineSmall Offline
Apr 4, 2012 - 5:00 pm

Michaela Rose said

Thanks Brandon. I only got this plug in a week or so ago but can't see anything in profiles. Can you pls tell me how to change the colour then? Thank you

There are no settings in the SP admin menu that allows you to tweak colors. You would first start by creating your own personalized theme. See here on how to do that. http://codex.simple-press.com/.....g-a-theme/

Once you have your own theme the main php or CSS file that sets the colors, spacing, font size and things like that would be in your theme's /styles folder.

Here is the long answer to changing a button color...

If you are wanting to change your button color for example and you copied something like the default.php file you can open it in a text editor and search for

#spMainContainer a.spButton,
#spMainContainer .spButtonAsLabel {

under it you will see several entries. One of them is background: and probably looks like this:

    background: <?php echo($alt1SectionBackGround); ?>;

If you then open up your Sky-Red.php file, or any overlay that you are using, you would want to look for the entry that says

$alt1SectionBackGround    ='...';

After the = equals sign is where you would put the color you want the button to be. But you probably will see something like this.

$alt1SectionBackGround    = $alt1SectionGradient; # pick background from:....

That is because we want to use a gradient color scheme. Two different colors, the top different from the bottom. So the background entry says to use the gradient entry..

So you would then look for the entry

$alt1SectionGradient    =....

In that entry you will see a whole bunch of stuff and really start getting confused.. smile

"-moz-linear-gradient(100% 100% 90deg, $alt1SectionTo, $alt1SectionFrom); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from($alt1SectionFrom), to($alt1SectionTo));filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$alt1SectionFrom, endColorstr=$alt1SectionTo,GradientType=0 );background: -ms-linear-gradient(top, $alt1SectionFrom 0%,$alt1SectionTo 100%); background: -o-linear-gradient(top,  $alt1SectionFrom 0%,$alt1SectionTo 100%); background: linear-gradient(top, $alt1SectionFrom 0%,$alt1SectionTo 100%); background: linear-gradient(top, $alt1SectionFrom 0%,$alt1SectionTo 100%); background-color: $alt1SectionBase;";

 

But don't be concerned with having to understand everything on the line or edit that entry. What you want to look for is where it says to use $alt1SectionTo & $alt1SectionFrom those are the two colors that you are going to use for the gradient in the button.

Just above that entry your will see the two start stop colors defined.

$alt1SectionFrom        = '#FFFFFF';
$alt1SectionTo          = '#990000';

 

You can change the colors there to change your button color. Here is a site that lists a bunch of color codes you can look at or play with. http://www.w3schools.com/probl.....colors.asp

 

Here is the short answer. smile

Change these in your overlay to the top and bottom colors you want your button to have

$alt1SectionFrom        = '#FFFFFF';
$alt1SectionTo          = '#990000';
Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Apr 4, 2012 - 8:10 pm

wow, should have just given the short! wink kiss

Forum Timezone: Europe/Stockholm
Most Users Ever Online: 1170
Currently Online:
Guest(s) 1
Top Posters:
Mr Papa: 19448
Ike: 2086
Brandon: 864
kvr28: 804
jim: 650
FidoSysop: 577
Conrad_Farlow: 531
fiddlerman: 358
Stefano Prete: 325
Member Stats:
Guest Posters: 620
Members: 17365
Moderators: 0
Admins: 4
Forum Stats:
Groups: 7
Forums: 17
Topics: 10128
Posts: 79626