CSS: What the FUCK?!?

Out of context: Reply #16

  • Started
  • Last post
  • 20 Responses
  • elahon0

    Alright, man, you asked for it. =) Might want to paste this into a txt file or something:

    <div class="sharebox_left_bottom">
    <h1>Member Stories</h1>

    <c:forEach items="#{shareController.mostDiscussedContent}" var="post" varStatus="loop">
    <h:column>
    <div class="commonPortalListing centerSubStory">
    <div class="photo"><vs:imgViewer
    thumbnail="false"
    value="#{post.discussionPost.author.profilePicture}" width="50" height="50"
    nostyle="true" />
    </div>
    <h3><h:outputLink value="#{appConfigurations.blogPostDetailsServletUrl}#{post.id}">
    <h:outputText value="#{post.story.headline}" styleClass="header" >
    <vs:truncatedTextConverter maxLength="40" replacement="..." />
    </h:outputText>
    </h:outputLink></h3><br />
    <div class="bylinePadding"><h:outputText value="#{shareMsgs.by} #{post.discussionPost.author.displayName}" styleClass="byLineText">
    <vs:truncatedTextConverter maxLength="25" replacement="..."/>
    </h:outputText>
    <h:outputText value=" - " styleClass="byLineText" />
    <h:outputText value="#{post.entryDate}" styleClass="byLineText">
    <f:convertDateTime pattern="MM/dd"/>
    </h:outputText></div>
    <h:outputText value="#{post.story.summary}" styleClass="previewBodyText" >
    <vs:truncatedTextConverter maxLength="130" replacement="..."/>
    </h:outputText><div class="clear"></div>
    </div>
    </h:column>
    </c:forEach>

    </div>

    • I feel physically sick.mikotondria3
    • make sure the width of the h3 is not more than 219px, including margins and padding...7point34
    • that's based on the 275 up there and subtracting 56 for the image7point34
    • is my math right? it's late7point34
    • THe H3 has no width on it. Margin is 0.elahon
    • *pokes eyes out with rusty fork found in the streetETM

View thread