Need two simple hacks


Author Message
doug

Posted: 2/14/2009
Quote message 

I want to make two simple custom changes:

- I want each individual post title to be underlined.

- I would like to put a small line, or lower boarder, at the bottom of each post to separate it from the next post.
 
Ellin

Posted: 2/14/2009
Quote message 

Hello Doug,
- you can do it in Artisteer project. Open Articles section -> Header -> Headline -> Text -> Font Options and select "Underline" effect
- Artisteer does not allow to create a line or different borders parts widths within the project. However you can edit the Style.css file. I created WordPress Theme and modified the .PostMetadataFooter style in Style.css file.
 
doug

Posted: 2/15/2009
Quote message 

Elliln,

The header headline is what actually becomes the title of the entire web site, not an individual post. The item I want to underline is what Artisteer calles the "content hyperlink"....eveyone else in the world calls that the post title or post header....

Can you provide the exact place to change the css in the footer file to add a "border: bottom...etc" thanks
 
Richard

Posted: 2/16/2009
Quote message 

doug are you using Artisteer v1 ? In v2 beta there are more options to allow editing of the footer and posts, look in news for a link to the beta
 
Ellin

Posted: 2/16/2009
Quote message 

to Doug:
I did not mean the "Headline" text in Header section.
May be I misunderstood your post, but provided solution makes the article title underlined.

As for footer border just open the Style.css file (it's WP solution!), find the class

.PostMetadataFooter {    background-color: #FFFFFF;   ...  border-width:  2px;  ... }

and modify the 'border-width':

.PostMetadataFooter
{

background-color: #FFFFFF;
...
border-width: 0px 0px 2px 0px;
...
}