arthurlozinski
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What's my URL's RSS Feed?Called it! Thanks Len!
Forum: Themes and Templates
In reply to: Pages won't show up!It was a theme issue. There is a specific tab in the Thesis Options, under “Appearance” let’s you change what pages are inserted in the navigation bar.
Forum: Themes and Templates
In reply to: Changing the color of my blog name titlehere’s the fix I had to do. I traced back the file location to “style.css” in the theme folder. Turns out not all themes have the stylesheet in the same place.
the element was “logo” after all.
Fixed.
Forum: Themes and Templates
In reply to: Changing the color of my blog name titlemaybe I’m adding it to the wrong “.css” file
theme>thesis>custom>custom.css
Forum: Themes and Templates
In reply to: Changing the color of my blog name titleI just realized that when I inspected the element. Obviously I’m a noob.
<p id="logo"><a href="http://www.arthurlozinski.com">Arthur Lozinski</a></p>So I tried:
#logo {color: #fff;}
and….. nothing.
Forum: Themes and Templates
In reply to: Changing the color of my blog name titleJust tried that as well. No result…
I tried:
.custom #logo a {
color: #fff;
}no result… :-/
Forum: Themes and Templates
In reply to: Changing the color of my blog name titleJPry! Thank you again…
I think the idea with this templete is that you are only editing the “custom.css” file in the theme folder and it overwrites the main “.css”, which I haven’t been able to locate.
I’ve added, with no result:
`#tagline {
color: #fff;
}`Forum: Themes and Templates
In reply to: Changing the color of my blog name titleJPry, much appreciate the response!!
my website is arthurlozinski.com
interms of the class “custom” I’ve already made switches such as:
.custom #content {Background-color:#ffffff;}
and got the desired result, as you can see…