51

(9 replies, posted in General Help)

I don't believe it's possible.

52

(4 replies, posted in General Help)

Yes. Very easy. Add this to user.css if no child theme or style.css if you're using a child theme:

.entry-content a, .entry-content a:link, .entry-content a:visited {
    color: #EE7600 (whatever color you want);
}

53

(3 replies, posted in General Help)

No problem!

54

(9 replies, posted in General Help)

No problem!

55

(3 replies, posted in General Help)

Try:

#nav {
    margin: 0 auto;
    width: 990px;
}

56

(9 replies, posted in General Help)

Try:

#nav {
    margin: 0 auto;
    width: 990px;
}

57

(5 replies, posted in General Help)

Not with arras.

58

(9 replies, posted in General Help)

Tin wrote:

No one can help me ?  sad

Still fooling around with it.

59

(9 replies, posted in General Help)

Voulez-vous dire la largeur de la tête? Ou la couleur des menus de navigation?

60

(9 replies, posted in General Help)

What do you mean weight?

61

(4 replies, posted in General Help)

header.php

Look for other similar lines.

62

(7 replies, posted in General Help)

Joe Mobley wrote:

You're probably right. I'm still getting a handle on .css. I may be doing something the less-than-best way.

A high priority for me is NOT to edit the themes .php files. I have been able to this so far.


Joe Mobley

Create a child theme and if you mess up the PHP files, you can just delete the file from your child theme and it will go back to the defaul Arras files.

63

(4 replies, posted in General Help)

Not sure what you mean.

64

(6 replies, posted in General Help)

If you're not using a child theme place this code in your user.css, if you are using a child theme place this in your style.css file:

.search-results-content .searchform, .sidebar .searchform {
    width: 180px;
}

What exactly are you trying to achieve? You want the images to be links to the category?

66

(4 replies, posted in General Help)

Yup. Exactly.

67

(7 replies, posted in General Help)

The only problem with Joe's method is I believe it hides category titles. But both solutions should work, I guess.

68

(4 replies, posted in General Help)

Try adding !important to each part that you're changing. For example:

.post { width: 1px !important; }

69

(5 replies, posted in General Help)

No idea. I know how to do it on category, tag, archive and author pages but not the home page. Sorry.

70

(5 replies, posted in General Help)

That would take a lot of work. Let me look into it for you.

No worries! I see what you mean. I was the same way when I first started dealing with this stuff.

72

(4 replies, posted in General Help)

You shouldn't edit the core files. It's better to just add the code I gave you in user.css.

Not sure what you're asking. What I gave you will eliminate it. No need for the other stuff.

74

(7 replies, posted in General Help)

Step 1: Open single.php

FIND

<h4 class="module-title">

REPLACE WITH

<h4 class="commentsnone-title">

Step 2: Add to user.css

.commentsnone-title { display: none !important; }

Step 3: Add to user.css

.nocomments { display: none; }

user.css or style.css or child theme:

.posts-quick .quick-read-more a:link, .posts-quick .quick-read-more a:visited {
    display: none;
}