Diomedes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Parse error: syntax error, unexpected T_STRING…Ok. I tried to replace the
functions.php
file via FTP but can’t seem to be able to download my theme (NotesIL) from WordPress. It doesn’t exist in the database anymore, which is frustrating to say the least. So I can’t upload a new file, because there is no way to access a new file.What can I do? I tried replacing the file with the
functions.php
of the Sandbox theme, which is the base theme for NotesIL, and my site appears blank, white.Forum: Themes and Templates
In reply to: Parse error: syntax error, unexpected T_STRING…[No bumping. This is a forum – not online chat. If it’s that urgent, consider hiring someone.]
Forum: Themes and Templates
In reply to: Parse error: syntax error, unexpected T_STRING…Any other solution until I get to replace it? Do you want to see the entire
functions.php
file?Forum: Themes and Templates
In reply to: Links not clickable?Thank you very much.
Forum: Themes and Templates
In reply to: FontsYou should also check out Typekit.
Forum: Themes and Templates
In reply to: (theme 'canyon' by jinsona) changing font, bold, italics etc?If you’re trying to change the post text yourself, i.e. what you type into the post editor and publish to your site, when you specify bold or italic with the buttons it should work. If not, go to the HTML side of the post editor and wrap your desired text around with
<i>
and</i>
(or<em>
and</em>
), to make that text selection italicized. See if that works.If you’re trying to change more complicated things like all the post titles, or all the body text on your website — you should go to your
style.css
folder and change it from there. Here’s what my post titles look like on my blog:h2 { text-align: left; font-size: 2em; color: #000; font-family: Georgia, Times, serif; text-transform: none; letter-spacing: -1px; line-height: 90%; font-weight: bold; }
Change it from there.
Hope that helped?
Forum: Themes and Templates
In reply to: (theme 'canyon' by jinsona) changing font, bold, italics etc?If specified through the post editor, the text should appear as stylized — is it not working for you?
Forum: Themes and Templates
In reply to: (theme 'canyon' by jinsona) changing font, bold, italics etc?Have you seen these basics?
Forum: Themes and Templates
In reply to: Change Background ColorHmmm, will have to leave this to the experts. Just wildly guessing here, but have you tried adding a
background: #fff;
to#main
?Forum: Themes and Templates
In reply to: Change Background Colorbody { background: #ffffff color: #757575; font: 100%/1.375em Arial, Helvetica, sans-serif; position: relative; }
— I don’t know if it’s a copy-and-paste mistake but you don’t have a semi-colon after the
background: #ffffff
. It should be like this:`body {
background: #ffffff;
color: #757575;
font: 100%/1.375em Arial, Helvetica, sans-serif;
position: relative;
}`Forum: Themes and Templates
In reply to: [Clean Retina] HeadersLink to your blog?
You should be able to go to
style.css
and change the font from there to a sans-serif one.Forum: Themes and Templates
In reply to: Styling post meta dataPerfect. Thanks very much!
Forum: Themes and Templates
In reply to: Styling post meta dataNot sure what you mean by that. Do you mean
index.php
andsingle.php
?Forum: Themes and Templates
In reply to: Styling post meta dataCustomized White as Milk. Let me know if you want the link.
Forum: Themes and Templates
In reply to: URGENT: Theme broken? Help!Hooray! Uploaded a new
functions.php
and now it’s working. Thanks so much for the help, appreciate it a lot Andrew.