Create A Forum - Support Forums

Support => General Support => Topic started by: JEV on April 20, 2013, 08:23:31 pm

Title: Change Font Size
Post by: JEV on April 20, 2013, 08:23:31 pm
I'm sorry if this is in the wrong section, but it seems like the "Style Support" section doesn't have many views and I would like to fix this ASAP, but I understand if the topic has to be moved.


I read the sticky topics over at the sytle support section, but still can't get around this. How can I decrease the font size of the title and description of the sections?


I have gone over the CSS of the style (light blue) and can't find anything to change this. Can anyone please help?
This is how it looks like and what I want to change is circled in red.


(https://support.createaforum.com/proxy.php?request=http%3A%2F%2Fs15.postimg.org%2F4wlnehfq3%2FUntitled3.png&hash=f34b3cfb8e2d5edb3ac11153a4f8850ff36795e0)


Thank you.
Title: Re: Change Font Size
Post by: aIURbliS on April 20, 2013, 09:52:04 pm
So you read the stickied topics, do you know the element to modify yet?
Title: Re: Change Font Size
Post by: JEV on April 21, 2013, 05:29:36 pm
I did, I just can't understand how that relates to the CSS and the parts I need to change. This is what I get:


"About the Forums": <a class="subject" href="http://bjlforums.createaforum.com/about-the-forums/" name="b2">About the Forums</a>


"Check out the latest news about the forums": <p>Check out the latest news about the forums.</p>


And I don't know what I have to do to change the font size.
Title: Re: Change Font Size
Post by: aIURbliS on April 21, 2013, 07:55:01 pm
Pretty close, you narrowed it down but that still isn't the element. Here's where you look for the element:
(https://support.createaforum.com/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FSd2H15S.png&hash=3715414398bdb11f26352c93fa1bd142d1c94272)
Also this entirely relates to CSS because you don't want to be changing the font for everything, but instead you want to change the font for one specific thing. So the element is "a.subject", now you need to change the font size. Looking on the right hand side of the Developer Console, the font-size is set to 110% so this is how you decrease it:
Code: [Select]
a.subject {
    font-size:100%
}
Title: Re: Change Font Size
Post by: JEV on April 21, 2013, 10:59:57 pm
Oh, I see. That's exactly it, now I was able to change it. Thank you so much! :)