,
Custom Search
Showing posts with label CSS. Show all posts
Showing posts with label CSS. Show all posts

Sunday, October 13, 2013

CSS For Changing The Wording Of The Commentor

This code worked for me in at least one of my blogs for adding "said:" to the comment after the user's name...I image you could change it to whatever word you wanted. This was only tested on regular templates, not the dynamic views.

Thanks to Yoboy for figuring this out for me.

.comments .comments-content .user:after{
content
: " said: " !important;
}
.comments .comments-content .icon.user:after{
content
: "said: " !important;
font
-size: 0px !important;
}


Mishka
Official Blog*Star/Blogger TC
Testing Blogger

Friday, August 23, 2013

CSS Fix for Watermark Template Pages Gadget

This is the CSS to add to your Template Designer for this problem in only the Watermark Templates. Hopefully Blogger engineering will come up with a template fix that will make this unnecessary in the long run. Thanks TC Adam for finding this!!


.cap-left {
 height: Inherit !Important;
}


Mishka
Official Blog*Star/Blogger TC
Testing Blogger

Thursday, August 8, 2013

CSS For Removing Message From Label Pages

Putting this here for reference for myself...works great in the two blogs I applied it to.

.status-msg-wrap{
display: none;
}

 
Thanks to Yoboy and his Southern Speakers blog for this info.

Mishka
Official Blog*Star/Blogger TC
Testing Blogger

Tuesday, May 7, 2013

CSS For Centering Pages Gadget

This code seemed to work on both the Simple and Awesome templates. I didn't test it on any others. Obviously the px have to be adjusted depending on the overall widths used on the template and the backgrounds have to be adjusted if they are colored differently from the main background.

This is mostly for my own info so I can find it quickly to reference other users to. Thanks to Yoboy for posting it in a comment on his blog.


#PageList1 ul{
width
: 500px !important;
margin
: auto !important;
display
: block !important;
}


Mishka
Official Blog*Star/Blogger TC
Testing Blogger

Friday, February 1, 2013

CSS For Removing Author and Timestamp in Dynamics

Thanks to Yoboy for this info. Unfortunately we can't do it on the feed but at least we can get rid of it on the template itself.

I wanted to post this here for my own reference and then for anyone else that might need it.

.publish-info{
display
: none !important;
}

Mishka
Official Blog*Star/Blogger TC
Testing Blogger

Saturday, April 21, 2007

CSS I Have Added To This Blog

Just wanted to add this CSS to my blog so I could keep a record of it in case I need it for later. The top one removes the label status message on my pages and the bottom one moves the post footer info over a notch when taking out the Post By info.

.status-msg-wrap{
display: none;
}
 
.post-timestamp {
    margin-left: 0;
} 


Mishka
Official Blog*Star/Blogger TC
Testing Blogger