default icon / profile link

Feb 15, 2009 12:42

First off, I love this community.

Secondly, my problem...
1. Journal you are trying to modify: rumblefish
2. Account Level (basic, plus, paid): Paid
3. What are you trying to accomplish?: I would like to remove the border that is above the title of my journal and remove the "wrote in" text on the friends page.

EDIT: Also, I would like to use a layer code ( Read more... )

text, borders, friends page

Leave a comment

Comments 5

ex_uniquewo February 15 2009, 20:03:52 UTC
#1 Here's the CSS to remove the border:

.header .hr {
display: none !important;
}

#2 If you don't mind the gap, you can hide it by making it white:

.entry-text .username {
color: #fff;
}

Otherwise, I think you need S2 code and a theme layer. Tell me if you want this.

Reply

ex_rumblefi February 15 2009, 20:11:51 UTC
Yes, I would really like a theme layer! I edited the post with more information. And thank you for helping :)

Reply

ex_uniquewo February 15 2009, 20:28:42 UTC
Here's your code then:
set active_theme = "x0";
set theme_css = "x-1-1.css";

set text_user_posts_in = "";

function _taglist(int max, int multiplier) {
var Page p = get_page();
var TagDetail[] total_tags = $p->visible_tag_list();
var int most_count = 1;
var TagDetail[] tags;
var int tcount = 0;
var string[] links = [];
var int[][] graph;
var int skipped = 0;
if (size $total_tags > $max) {
var int toskip = size $total_tags - $max;
foreach var TagDetail tag ($total_tags) {
$graph[$tag.use_count][size $graph[$tag.use_count]] = $tcount;

$tcount++;

}
var int T1c = 0;
foreach var int[] T1 ($graph) {
if ($T1) {

var int[] newT1;
if (size $T1 <= $toskip ( ... )

Reply

ex_rumblefi February 15 2009, 20:41:34 UTC
It worked perfectly. Thank you so much for all of your help :)

Reply


Leave a comment

Up