Forum Replies Created
-
In reply to: Setup login for private forum?
Shouldn’t there be some functions code in there somewhere? I’m using the php code snippets plugin so I don’t really know how to code these things i’m just copying and pasting into that…
In reply to: Setup login for private forum?I’m still getting “page not found” with abufrank’s code.
In reply to: How do you widen a forum when a sidebar is usedhttp://www.salamatphilippines.com
Here is a normal view of the forums: http://imgur.com/eFZnm4e
It’s small…very small and hard to read…wish I could expand it out.Then here is the view I get upon editing a topic: http://imgur.com/pejI0b6
LOL! It’s way to small to even see what your doing.Could really use some help here. Thank you.
In reply to: How do you widen a forum when a sidebar is usedstill can’t get it fixed, and when the forum topics are being edited, they shrink even smaller!
In reply to: How do you widen a forum when a sidebar is usedI’ve tried this as well:
#sidebar-left .widget, #sidebar-right .widget {
margin: 0 0 1em !important;
}body.bbpress div#content{
width:100% !important;
}In reply to: Forum Width in Twenty SeventeenThis didn’t work for me. I think because I’m using a sidebar on my forum pages, this is a must for me. Is there something that can be done to reduce the margin of the sidebar and forum blocks at the same time?
In reply to: How to limit media size in bbpressnever mind pls close this, going to go another route
In reply to: Remove “Topics”, “Posts”, & re-name “Freshness”I just realized..
Fixing the main root of forums will only fix that main root and not all the other sub-forums…..sigh… recommendations? Is this even worth doing?
Apparently this wasn’t fixed, I just moved a topic and the counts did not change in either forum nor did my user account show that I posted to the new forum. I ran a repair, with only topic counts checked and the counts were fixed but my profile picture was not moved. I ran it a 2nd time with everything checked, and now the forum is correct!
So it looks like the bug was not fixed, and users MUST repair after a topic is moved to keep the forum data correct FYI.
In reply to: Cant move topics & repliesOmg ok I figured it out. I guess there is no way to do it from the actual forum page. You have to go to your dashboard and click on “Topics,” then change the forum. Unfortunately however, there is another issue that has came up in regard to topic counts after doing this, but I’ll open another thread about that.
In reply to: Change hover colour of search buttonNVM I think I got it…might not be optimal…but this worked:
#bbpress-forums .submit {
background-color: #0f5289;
color: #FFFFFF;
float: center;
vertical-align: middle;
border-radius: 0;
height: auto;
width: auto;
}#bbpress-forums .submit:hover {
background-color: #0c2b44;
color: #FFFFFF;
float: center;
vertical-align: middle;
border-radius: 0;
height: auto;
width: auto;
}In reply to: Change hover colour of search buttonHello. What would the code be to change the color of the “Submit” button? I’m assuming the same code but with a change to the 1st line.
Is it this:
#bbpress-forums .submit {
background-color: #1e73be;
color: #FFFFFF;
float: center;
vertical-align: middle;
border-radius: 4px;
height: 35px;
width: 120px;
font-size: 14px !important;
}Because it didn’t work..
In reply to: Forum Width / Sidebar Issue?Yes! But not that code! 🙂
Here is what worked:
`@media screen and (min-width: 980px) {
/* This is the width of the forum content area */
.bbpress #content {
max-width: 95%;
}
/* This is the width of the forum list */
.bbpress #primary {
width: 66.6666%;
/* border: 1px solid red; */
}
/* This is the width of the forum list */
.bbpress #secondary {
width: 33.3333%;
/* border: 1px solid blue; */
}
/* Center the contents of the sidebar */
.bbpress #secondary aside {
margin: 0 auto;
display: table;
}
}In reply to: Forum Width / Sidebar Issue?I was given something like this:
body.responsive.page-template-default #page-wrapper .full-container { max-width: 1080px !important; }
In reply to: Forum Width / Sidebar Issue?Ok, thanx..I’ve been trying and i’ve gotten some css but it never does anything. I’ll keep looking.