inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Apr 16, 2019 14:03:14 GMT -8
Eureka Here are the classes that use a background color instead of a border: .boards.container > .content .threads.container > .content .posts .post > td .messages .message > td .quick-reply .content You should be able to find and update these with ctrl + F in the stylesheet. And for the control bar: .container > .control-bar
|
|
inherit
256559
0
Jun 11, 2024 12:08:37 GMT -8
Eureka
12
October 2018
eurekachai
|
Post by Eureka on Apr 16, 2019 14:17:04 GMT -8
oh my goodness, you're amazing. thank you so, so much!
|
|
inherit
256559
0
Jun 11, 2024 12:08:37 GMT -8
Eureka
12
October 2018
eurekachai
|
Post by Eureka on Apr 16, 2019 14:43:01 GMT -8
sorry, hopefully the last time i bother you -- there are a couple more background spaces that i'm not sure where to change? these straggler boxes at the ends of boards and the background color for the padding around the threads?
|
|
inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Apr 16, 2019 17:29:32 GMT -8
Eureka These selectors should catch the first two: .boards table.list > tbody > tr > td > table > tbody > tr > td .container > .content .stats .content > table > tbody > tr > td You're updating the border-color in this case. The selector for the last one is in my previous post (.threads.container)
|
|
inherit
256559
0
Jun 11, 2024 12:08:37 GMT -8
Eureka
12
October 2018
eurekachai
|
Post by Eureka on Apr 16, 2019 21:01:49 GMT -8
ah, it all works! thank you so much for being so helpful, and for responding at all on a years old thread!
|
|
inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Apr 17, 2019 7:58:29 GMT -8
|
|
inherit
255076
0
Feb 3, 2024 1:18:37 GMT -8
suzikane
42
May 2018
suzikane
|
Post by suzikane on Aug 2, 2019 6:33:25 GMT -8
Hi Elli.
I'm wondering what the solution is for making the Categories and Thread Titles to Normal Letters. So it starts with a capital and the rest are small?
And I would like to remove the cbox and add text as a short description but I would like to have space in between paragraphs how do I do that?
Thanks for your help.
Suzette
|
|
inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Aug 2, 2019 9:15:11 GMT -8
To change text casing on titles, go to Admin > Themes > Advanced Styles & CSS > "Style Sheet". You can then edit the existing styles, or overwrite them. To overwrite them, scroll to the bottom of the code area and add the following declarations on new lines:
Categories:
.container > .title-bar h1, .container > .title-bar h2, .container > .title-bar h3 { text-transform: none; } Boards:
.boards table.list > tbody > tr > td > table > tbody > tr > td.main .link a { text-transform: none; } Threads/Conversations:
.threads table.list > tbody > tr > td.main > table > tbody > tr > td.title .link a, .conversations table.list > tbody > tr > td.main > table > tbody > tr > td.title .link a { text-transform: none; } ---
To remove the Cbox, go to Admin > Themes > Layout Templates > Forum Wrapper and remove this block:
<div class="sidebar-chatbox"> <!-- BEGIN CBOX - www.cbox.ws - v4.2 --> <div id="cboxdiv" style="position: relative; margin: 0 auto; width: 205px; font-size: 0; line-height: 0;"> <div style="position: relative; height: 250px; overflow: auto; overflow-y: auto; -webkit-overflow-scrolling: touch; border:0;"><iframe src="//www4.cbox.ws/box/?boxid=3340347&boxtag=2218&sec=main" marginheight="0" marginwidth="0" frameborder="0" width="100%" height="100%" scrolling="auto" allowtransparency="yes" name="cboxmain4-3340347" id="cboxmain4-3340347"></iframe></div> <div style="position: relative; height: 82px; overflow: hidden; border:0; border-top: 0px;"><iframe src="//www4.cbox.ws/box/?boxid=3340347&boxtag=2218&sec=form" marginheight="0" marginwidth="0" frameborder="0" width="100%" height="100%" scrolling="no" allowtransparency="yes" name="cboxform4-3340347" id="cboxform4-3340347"></iframe></div> </div> <!-- END CBOX --> </div> To add more paragraphs, duplicate this block as necessary:
<p class="sidebar-site-description">Short site description. Kale chips skateboard fingerstache, distillery paleo keytar banjo biodiesel health goth synth bitters viral disrupt literally chia food truck.</p> This paragraph class already has a bottom margin. You can edit it by finding this selector in your stylesheet:
.sidebar-site-description
|
|
inherit
255076
0
Feb 3, 2024 1:18:37 GMT -8
suzikane
42
May 2018
suzikane
|
Post by suzikane on Aug 4, 2019 23:10:22 GMT -8
Thanks a million elli for all your help!
Cheers,
Suzette
|
|
inherit
208780
0
Sept 10, 2024 17:23:11 GMT -8
clemie
125
May 2014
clemie
|
Post by clemie on Aug 22, 2019 19:15:51 GMT -8
Hello <3 I removed the sidebar by following some instructions I found either in this thread or another now however some people say the site looks "off" is there a way to center it for everyone? Example of off: i.imgur.com/IeLSUOQ.png
|
|
inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Aug 22, 2019 19:51:26 GMT -8
clemie #wrapper has a left margin on it for the sidebar: margin: 40px auto 50px 275px; You'll need to update this to: margin: 40px auto 50px; Also, I would like to mention that the sidebar contains my copyright. It's ok if you remove the sidebar, but please make sure that my copyright is visible on all pages. You can put it in the Forum Wrapper template above the $[footer] variable, for example.
|
|
inherit
208780
0
Sept 10, 2024 17:23:11 GMT -8
clemie
125
May 2014
clemie
|
Post by clemie on Aug 22, 2019 19:54:40 GMT -8
elli Thank you also yes, I moved when I first took it our per directions from where ever I found how to move it from. Also, I believe the doc explains it as well(? been a hot minute since I was on this skin). I'll link you to the site once it's finished and to ensure credit is viewable from all places!
|
|
inherit
201730
0
Apr 26, 2023 13:19:38 GMT -8
nettle
7
November 2013
nettle
|
Post by nettle on Aug 23, 2019 21:10:50 GMT -8
|
|
inherit
241575
0
Dec 29, 2019 14:41:44 GMT -8
Marlayna
59
February 2017
marlaynawilton
|
Post by Marlayna on Dec 29, 2019 14:39:10 GMT -8
The link to download this theme is no longer working and I was trying to use it for my new site that I'm making.
|
|
inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Dec 29, 2019 15:40:09 GMT -8
Marlayna It works. You need to right click > "Save link as..."
|
|