Info
- 39 posts
- 9 voices
- Started 5 years ago by Gregory9885
- Latest reply from wmarcy
- This topic is not a support question
Template of this forum??
-
- Posted 5 years ago #
OK, I don't know if this is supposed to be how it looks, (tabbed, with the single horizontal bar over the selected tab, double over the other two non-selected tabs). This is how I got it.
Original:
#profile-menu {
list-style: none;
position: absolute;
right: 0;
}Which I changed to:
#profile-menu {
list-style: none;
position: relative;
right: 0;
} -
- Posted 5 years ago #
Sigh, which only seems to work with FireFox.
Anyone have any other ideas?
-
- Posted 5 years ago #
That is the intended placement for the forums here as well as the other wordpress forums. It can be changed though! I would just edit style.css for this portion:
/* Profile Page =================================== */ #profile-menu { } #profile-menu li { font-size: 1.1em; background-color: #eee; padding: 4px 7px; display: inline; border-top: 3px single #9e9e9e; position: relative; top: -10px; }All I did there was take out the positioning for profile-menu itself so it displays inline and then changed the border of the list items themselves to have a single border on top instead of the double. You can edit that more to get it to look the way you want as well.
That being said, I am leaving it as is because it is the closest to the 'actual forum' with the profile menu on the right hand side floating......but this will fix you up!
Trent
-
- Posted 5 years ago #
Thanks Trent!
ETA. It works on both Safari and FireFox.
-
- Posted 5 years ago #
Hey Trent, Don't know if it matters to you, but it was bugging me <s>, the 'Views' section at the bottom of the front page was aligned to far left for my tastes, I added this into my style2.css file:
#viewdiv {
padding: 0 7px;
margin-bottom: 2px;
}And it brought the 'Views' Section into alignment with the rest of the tables.
-
- Posted 5 years ago #
Trent, Another problem I am having (If these questions are getting to be annoying just let me know, I appreciate your time).
On my site http://www.wetworx.com/forums/ the search field is to the extreme left, while the submit button is is on the extreme right, and lower by about 100 pixels.
messing with the style.css doesn't seem to have any effect (Kind of puzzling that one).
Any hints or pointers?
Thanks!
-
- Posted 5 years ago #
Try <p align="left"> or something or throw it in a div and align that to the left where the search form starts...
edit: well this sounds weird, but it's late overhere
-
- Posted 5 years ago #
Not sure what it was originally, wmarcy, but it's all a bit screwy. They're in seperate paragraphs, which means they can't be side-by-side (unless they're both ID'd and have seperate float rules). So basically, find the form (as in, form HTML element) for the search and replace it by:
<form method="get" action="http://www.wetworx.com/forums/search.php"> Search: <input type="text" value="" name="q" maxlength="100" size="40"/> <input type="submit" class="inputButton" value="Search ยป"/> </form>The
Submitbutton however still won't be on the right, but at least it'll be level and since it wantonly jumps about when youtext-alignorfloatit right I can't be bothered with making it right-aligned. Make the width of your search bar wider or something if you need to push it over. -
- Posted 5 years ago #
Thanks Fel64, I wrapped your code up into a table and it dragged the recalcitrant submit button into the proper position. <lol> How come it is the little things that eat away?
-
You must log in to post.