WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1Help me! with entry-content Empty Help me! with entry-content Mon Dec 13, 2010 9:48 pm

#Spacca

#Spacca
Registered Member
Registered Member
screen:
i haven't got a "box"
how to put it?

my template code:
Code:
<!-- BEGIN profile_field -->
                        {postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}
                        <!-- END profile_field -->
                        {postrow.displayed.POSTER_RPG}
                     </div>
                  </div>

                  <div class="post-entry">
                     <div class="#pun .entry-content">
                        <!-- BEGIN switch_vote_active -->
                        <div class="vote gensmall">
                           <!-- BEGIN switch_vote -->

if i change #pun .entry-content
in .entry-content it don't go

2Help me! with entry-content Empty Re: Help me! with entry-content Tue Dec 14, 2010 2:46 am

Guest


Guest
This line:
Code:
<div class="#pun .entry-content">
is your problem. You should NEVER put meta-characters like "#" or "." in a class or ID! Since there is already a .pun class, I can only assume you're trying to create a #pun ID. And you should not do that because it will create multiple #pun IDs on the page, which is a major CSS no-no.

Try this line instead:
Code:
<div class="dion entry-content">
and use .pun .dion.entry-content in your CSS.

3Help me! with entry-content Empty Re: Help me! with entry-content Tue Dec 14, 2010 2:52 am

Emilio

Emilio
Registered Member
Registered Member
Haha I like that :p
.pun .dion.entry-content

http://www.graphilicious.forumotion.Com

4Help me! with entry-content Empty Re: Help me! with entry-content Tue Dec 14, 2010 2:58 am

#Spacca

#Spacca
Registered Member
Registered Member
also with
<div class="entry-content">

don't go

5Help me! with entry-content Empty Re: Help me! with entry-content Tue Dec 14, 2010 10:36 pm

#Spacca

#Spacca
Registered Member
Registered Member
bump

6Help me! with entry-content Empty Re: Help me! with entry-content Wed Dec 15, 2010 4:45 am

Guest


Guest
#Spacca wrote:also with
<div class="entry-content">

don't go
I need a smiley that isn't in the list here.

Help me! with entry-content 141643 Did you even read what I wrote?

***********

(Note to ankillien/sanket: please consider putting clear:none; in the .pun .sig-content CSS rule. Right now it has clear:both; which is clearing the post profile float, and it's causing signatures to appear below the post profile. Look at Emilio's post in this topic for an example of what I'm talking about.)

7Help me! with entry-content Empty Re: Help me! with entry-content Wed Dec 15, 2010 8:57 am

Jophy

Jophy
Registered Member
Registered Member
Spacca, Please don't double post unless separated by 24 hours! Use the EDIT button, Thanks

http://www.socialtechforum.com/

8Help me! with entry-content Empty Re: Help me! with entry-content Thu Dec 16, 2010 8:08 pm

#Spacca

#Spacca
Registered Member
Registered Member
bump

9Help me! with entry-content Empty Re: Help me! with entry-content Thu Dec 16, 2010 8:20 pm

Guest


Guest
#Spacca (Thu Dec 16, 2010 6:38 pm) wrote:bump

Man are you crazy? Beaten up

1)Learn at least some basics of coding
2)Read what Dion wrote or give it up!

10Help me! with entry-content Empty Re: Help me! with entry-content Thu Dec 16, 2010 9:05 pm

#Spacca

#Spacca
Registered Member
Registered Member
yes i have done it!

11Help me! with entry-content Empty Re: Help me! with entry-content Fri Dec 17, 2010 8:03 pm

Jophy

Jophy
Registered Member
Registered Member
So solved?

http://www.socialtechforum.com/

12Help me! with entry-content Empty Re: Help me! with entry-content Sat Dec 18, 2010 8:09 pm

#Spacca

#Spacca
Registered Member
Registered Member
no...
i used long time ago an ego-code...
how to solve it?

13Help me! with entry-content Empty Re: Help me! with entry-content Sat Dec 18, 2010 9:20 pm

ankillien

ankillien
Administrator
Administrator
Hi,

I don't really understand your question but I'll try to solve.

This line in your code is buggy...

Code:
<div class="#pun .entry-content">

Replace it with...

Code:
<div class="entry-content">

Save the template and the bug should be gone Smile

14Help me! with entry-content Empty Re: Help me! with entry-content Sat Dec 18, 2010 10:33 pm

#Spacca

#Spacca
Registered Member
Registered Member
i have done it!
but it don't go!

15Help me! with entry-content Empty Re: Help me! with entry-content Sat Dec 18, 2010 10:36 pm

ankillien

ankillien
Administrator
Administrator
Can you explain what exactly you want to achieve?

16Help me! with entry-content Empty Re: Help me! with entry-content Mon Dec 20, 2010 1:16 am

#Spacca

#Spacca
Registered Member
Registered Member
i want to have a boix around the text!

17Help me! with entry-content Empty Re: Help me! with entry-content Mon Dec 20, 2010 10:04 am

ankillien

ankillien
Administrator
Administrator
THis CSS code will add box around post.

Code:
.entry-content {
border: 1px solid #333;
}

18Help me! with entry-content Empty Re: Help me! with entry-content Tue Dec 21, 2010 5:25 am

#Spacca

#Spacca
Registered Member
Registered Member
well...
it isn't solve but...

SOLVED

19Help me! with entry-content Empty Re: Help me! with entry-content Tue Dec 21, 2010 12:25 pm

Jophy

Jophy
Registered Member
Registered Member
Help me! with entry-content Locked10

Solved => Thread Closed

http://www.socialtechforum.com/

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum