News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

how can i change user in forum topic

Started by CodySweatshirt, November 05, 2014, 11:57:34 PM

Previous topic - Next topic

CodySweatshirt

so i want to change what the users look like to the left of the post they make.

i found a theme i really like but i hate that particular part of it. any insight?

Arantor

What theme? What's wrong with it in that theme?

Really hard to say 'this thing sucks' without any more information ;)

CodySweatshirt

Quote from: Arantor on November 06, 2014, 12:23:54 AM
What theme? What's wrong with it in that theme?

Really hard to say 'this thing sucks' without any more information ;)

theme = Bullet

but the theme is kind of irrelevant.. im just seeking some insight on how to change what a user looks like when they make a post

Arantor

No, it's not even remotely irrelevant. Some themes use the standard code, plenty of themes don't.

And as for tips, what are you looking for? Tips on how to change it: there's the code, go edit it. Unless you're fluent in PHP, HTML and CSS, this is going to be a challenge, meaning that the best option is for you to explain what you're looking for so someone can document the changes you will need to make...

Also, I can't seem to find the theme...

CodySweatshirt

Quote from: Arantor on November 06, 2014, 12:35:15 AM
No, it's not even remotely irrelevant. Some themes use the standard code, plenty of themes don't.

And as for tips, what are you looking for? Tips on how to change it: there's the code, go edit it. Unless you're fluent in PHP, HTML and CSS, this is going to be a challenge, meaning that the best option is for you to explain what you're looking for so someone can document the changes you will need to make...

Also, I can't seem to find the theme...


ah okay.
sorry if i sounded rude.
http://www.awesomestyles.com/downloads/styles/1109.zip [nofollow]

there it is. how difficult would it be for me to figure out how to steal another themes... i dont even know what to call it

kat

Do you mean you want to change the picture, on the left, there? The cat, drumming it's thumbs?

If so, go to your Profile>Forum Profile and change the avatar.

Kindred

no k@... he wants to change the mini-profile layout/look....
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

kat


Arantor

This would be so much easier if we didn't have to keep trying to read your mind and you were actually specific about what you are trying to do.

CodySweatshirt

Quote from: Arantor on November 06, 2014, 12:30:05 PM
This would be so much easier if we didn't have to keep trying to read your mind and you were actually specific about what you are trying to do.

all i want is to change the mini profile thing to the left of where a user posts, to resemble something like the one on this forum

ARG01

Quote from: CodySweatshirt on November 06, 2014, 02:15:23 PM

all i want is to change the mini profile thing to the left of where a user posts, to resemble something like the one on this forum

In your current themes index.css file find this comment:

/* poster and postarea + moderation area underneath */

Then find this comment:

/* The quick buttons */

Then replace everything in between those two comments with this:

.post_wrapper
{
float:left;
width:100%;
}
.poster
{
float: left;
width: 15em;
}
.postarea, .moderatorbar
{
margin: 0 0 0 16em;
}
.postarea div.flow_hidden
{
width: 100%;
}

.moderatorbar
{
clear: right;
}
/* poster details and list of items */
.poster h4, .poster ul
{
padding: 0;
margin: 0 1em 0 1.5em;
}
.poster h4
{
margin: 0.2em 0 0.4em 1.1em;
font-size: 120%;
}
.poster h4, .poster h4 a
{
color: #c06002;
}
.poster ul ul
{
margin: 0.3em 1em 0 0;
padding: 0;
}
.poster ul ul li
{
display: inline;
}
.poster li.stars, .poster li.avatar, .poster li.blurb, li.postcount, li.im_icons ul
{
margin-top: 0.5em;
}
.poster li.avatar
{
overflow: hidden;
}
.poster li.warning
{
line-height: 1.2em;
padding-top: 1em;
}
.poster li.warning a img
{
vertical-align: bottom;
padding: 0 0.2em;
}
.messageicon
{
float: left;
margin: 0 0.5em 0 0;
}
.messageicon img
{
padding: 6px 3px;
}
.keyinfo
{
float: left;
width: 50%;
}
.modifybutton
{
clear: right;
float: right;
margin: 6px 20px 10px 0;
text-align: right;
font: bold 0.85em arial, sans-serif;
color: #334466;
}


Keep a backup of your file before making changes.

No, I will not offer free downloads to Premium DzinerStuido themes. Please stop asking.

CodySweatshirt

Quote from: SimpMode on November 06, 2014, 02:53:09 PM
Quote from: CodySweatshirt on November 06, 2014, 02:15:23 PM

all i want is to change the mini profile thing to the left of where a user posts, to resemble something like the one on this forum

In your current themes index.css file find this comment:

/* poster and postarea + moderation area underneath */

Then find this comment:

/* The quick buttons */

Then replace everything in between those two comments with this:

.post_wrapper
{
float:left;
width:100%;
}
.poster
{
float: left;
width: 15em;
}
.postarea, .moderatorbar
{
margin: 0 0 0 16em;
}
.postarea div.flow_hidden
{
width: 100%;
}

.moderatorbar
{
clear: right;
}
/* poster details and list of items */
.poster h4, .poster ul
{
padding: 0;
margin: 0 1em 0 1.5em;
}
.poster h4
{
margin: 0.2em 0 0.4em 1.1em;
font-size: 120%;
}
.poster h4, .poster h4 a
{
color: #c06002;
}
.poster ul ul
{
margin: 0.3em 1em 0 0;
padding: 0;
}
.poster ul ul li
{
display: inline;
}
.poster li.stars, .poster li.avatar, .poster li.blurb, li.postcount, li.im_icons ul
{
margin-top: 0.5em;
}
.poster li.avatar
{
overflow: hidden;
}
.poster li.warning
{
line-height: 1.2em;
padding-top: 1em;
}
.poster li.warning a img
{
vertical-align: bottom;
padding: 0 0.2em;
}
.messageicon
{
float: left;
margin: 0 0.5em 0 0;
}
.messageicon img
{
padding: 6px 3px;
}
.keyinfo
{
float: left;
width: 50%;
}
.modifybutton
{
clear: right;
float: right;
margin: 6px 20px 10px 0;
text-align: right;
font: bold 0.85em arial, sans-serif;
color: #334466;
}


Keep a backup of your file before making changes.

awesome tyvm. another thing, on this miniuser profile to the left of my posts, how can i make the user name color reflect the title, example i have admin as blue but its showing yellow here.

and id like to do the same for when it shows recent posts and it will show the user name and its black when it should be blue.


if anyone wants to help feel free if not np :)

ARG01

Change the color here.

.poster h4, .poster h4 a
{
color: #c06002;
}


No, I will not offer free downloads to Premium DzinerStuido themes. Please stop asking.

CodySweatshirt

Quote from: SimpMode on November 06, 2014, 04:36:37 PM
Change the color here.

.poster h4, .poster h4 a
{
color: #c06002;
}


that will change it board wide.. but i want it dependent upon the set color for their title Ex : Mod

Illori



Kindred

questions regarding specific mods should be asked in the support topic for that mod (it is linked right from the mod download page)
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

Steve

DO NOT pm me for support!

Advertisement: