Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: SDMCC on November 25, 2013, 04:29:32 PM

Title: SMF logo, new text larger.
Post by: SDMCC on November 25, 2013, 04:29:32 PM
I have removed the SMF logo on the board index page and in it's place I have put in my club's working web link.
How can I make the text larger, is there a code I can insert somewhere in it?

This is how my URL coding looks at the moment, crosses put in for privacy.
<a href=http://www.xxxxxxxx.com/>http://www.xxxxxxxx.com/</a>

Hope I make sense.  :laugh:
Title: Re: SMF logo, new text larger.
Post by: Kindred on November 25, 2013, 05:00:36 PM
well, it helps if you give us an actual URL to look at...  we really can't tell you without looking at the actual site.

You would have to modify the CSS for
#siteslogan, img#smflogo

i.e.
font-size: 3ex;
font-weight: bold;
Title: Re: SMF logo, new text larger.
Post by: SDMCC on November 26, 2013, 06:00:03 AM
Where do I make these changes, is it within the forum templates or in the file manager?

Is this correct path?  public_html/smf/Themes/default/css. If it is, which of the CSS's do I use as I haven't been able to find #siteslogan, img#smflogo
Title: Re: SMF logo, new text larger.
Post by: Kindred on November 26, 2013, 07:41:36 AM
it will be in the index.css for your theme...
Title: Re: SMF logo, new text larger.
Post by: SDMCC on November 26, 2013, 09:59:26 AM
Did not work, any other suggestions please.

Found it here>   /home/myplo408/public_html/smf/Themes/default/css/index.css
Title: Re: SMF logo, new text larger.
Post by: Drunken Clam on November 26, 2013, 10:19:39 AM
Quote from: Kindred on November 25, 2013, 05:00:36 PM
well, it helps if you give us an actual URL to look at...  we really can't tell you without looking at the actual site.

Also, you don't say which theme you are using! (If it's not the 'default' theme, then your question would be better asked in the support topic for the theme you are using.)
Title: Re: SMF logo, new text larger.
Post by: SDMCC on November 26, 2013, 11:11:13 AM
Quote from: Drunken Clam on November 26, 2013, 10:19:39 AM
Quote from: Kindred on November 25, 2013, 05:00:36 PM
well, it helps if you give us an actual URL to look at...  we really can't tell you without looking at the actual site.

Also, you don't say which theme you are using! (If it's not the 'default' theme, then your question would be better asked in the support topic for the theme you are using.)

Thanks for pointing that out, I am using OmegaRedish, however I have just made the same recommended changes for that theme but there is still no change.

/home/myplo408/public_html/smf/Themes/OmegaRedish/css/index.css
Title: Re: SMF logo, new text larger.
Post by: Kindred on November 26, 2013, 11:19:57 AM
no... you did not make the change.

I looked at your site. The CSS is not showing any change.

line 1295 of you index.css file...
#siteslogan, img#smflogo {
    float: right;
    line-height: 3em;
    margin: 0;
    padding: 0;
}

you need to add
font-size: 3ex;
font-weight: bold;
before the }

and what I said before still holds true.

For questions about themes other than the default, you really should be asking in the support thread dedicated to supporting that theme
Title: Re: SMF logo, new text larger.
Post by: SDMCC on November 26, 2013, 02:11:52 PM
Thanks folks, I've done it, phew!  :P