[Pro] FeedBurner CSS edit possible?

I am able to use FeedBurner’s BuzzBoost feature working and embed my blog posts onto my site. ( BuzzBoost Overview and FAQ - FeedBurner Help )

But I would like to edit the CSS like the instructions say and that’s where I get totally lost :frowning:

If you can tell me where in Freeway Pro to put these code snippets I would appreciated it. Common BuzzBoost Styling Tricks - FeedBurner Help

~Rob


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Alright, basically I am having a hard time figuring out where to put this CSS information:

div.feedburnerFeedBlock ul {
margin-left:0;
padding-left:0;
list-style-type: none
}

I tried selecting an HTML blobk and adding a new style to it, than I clicked on Extended to add custom styling. I put “div.feedburnerFeedBlock ul” in the name part and the rest of the code “{
margin-left:0;
padding-left:0;
list-style-type: none
}” in the value part.

I saved that style but nothing changed :frowning:


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

If anyone has any idea how to edit CSS information please let me know.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Let me try an answer:

You select the item, then you go to the menu: Item > extended,

Try this / my pence.

/ Omar

::: Communication to improve civilisation :::

s_ip

On 11 feb 2012, at 19:30, “Robert” email@hidden wrote:

If anyone has any idea how to edit CSS information please let me know.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Code snippets like these should be added in Page>HTML Markup in the before End Head section

They will need to be wrapped in some style tags so the raw CSS is

div.feedburnerFeedBlock ul { 
margin-left:0; 
padding-left:0; 
list-style-type: none 
}

Which then becomes

<style type="text/css">
<!--
div.feedburnerFeedBlock ul { 
margin-left:0; 
padding-left:0; 
list-style-type: none 
}
-->
</style>

That is choosing the first example on the page you linked to.

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Yay!!! It’s starting to do something. Yes putting it in the HTML Markup is working.

Thank you so much.
~Rob


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options