emilyTK
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Mobile View – Logo Centered, Menu icon to rightSo I don’t suppose your site looks like this any longer?
https://wordpress.org/themes/customizrCould you at least provide a screen shot of the section?
Forum: Themes and Templates
In reply to: Font changeIn CSS, you can’t use categories that are implemented into the font. You need to work with font-weight. It is really your only option. If it doesn’t work in a specific case, you might need to use brute force, like so:
.mtop35 h1{ font-weight: 100 !important; }Handle with care.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] edit function.php and lost my siteStep 1: Redownload functions.php off wordpress.org.
Step 2: Use your FTP programme to navigate to your theme folder.
Step 3: Override your messed up functions.php with the one you just redownloaded.
Step 4: Ask Google before you edit functions.php again.Forum: Themes and Templates
In reply to: Font changeUse
font-weight, like so:.mtop35 h1{ font-weight: 100; }.mtop35 h1{ font-weight: 300; }Have a nice day, too!
Forum: Themes and Templates
In reply to: [Virtue] Website on Internet ExplorerIn my IE 11.0.12 your page looks exactly like it does in Chrome.
Forum: Themes and Templates
In reply to: When Accessing Themes I Am Kicked OutOHAI, this isn’t a Themes and Templates question. Try How-To and Troubleshooting. This will increase your chances of getting things fixed.
Thanks!Forum: Themes and Templates
In reply to: Child Theme style.css not workingLooks alright from here. Your child theme’s stylesheet is imported into your website, and it even validates alright.
How can you tell that it doesn’t work?
Forum: Themes and Templates
In reply to: [Radcliffe] Homepage image not standard sizeHaha, brilliant! 😀
Forum: Themes and Templates
In reply to: [Radcliffe] Homepage image not standard sizeAha, I see! Well, this is how it looks for me: http://i.imgur.com/9RVQTII.png
(Quite alright, isn’t it?)
This is Chrome. What browser are you using?Forum: Themes and Templates
In reply to: [Radcliffe] Homepage image not standard sizeAre you relating to the fun part? Because the image is showing up on the post for me.
And what standard size are you expecting?I don’t know, since Twenty Fourteen has always been a pain for customisation. My own website is a child of it as well, but I strapped it of every last bit of style there is to it.
D***it, and now I remember! You know where else Twenty Fourteen says it should be 474 pixels wide? Right at the top of functions.php!This is how it looks:
if ( ! isset( $content_width ) ) { $content_width = 474; }And this is how it looks on my server:
if ( ! isset( $content_width ) ) { $content_width = 1000; /* EDIT ETK: Original value was 474 */ }Note that this is probably a very bad workaround. There’s probably a better way to do this. (And people in the Plugins and Hacks forum would know of a better way. It’s the reason they’re there.)
I did it like this, since my knowledge of backend development is really near non-existent. The thing about child theming is that you can’t break functions.php: As you probably know, it’s the only file that won’t be overridden by the functions.php you might put in your child theme. That’s why I edited it directly in Twenty Fourteen, keeping in mind that I would have to edit it each time Twenty Fourteen is updated.
Anyway, it worked for me, but don’t tell anyone. ;o)Please see if you could find a better solution in the Plugins and Hacks forum.
Oh God you’re right, I totally ignored that, sorry. It might just be getting in the way like you said. I haven’t used it yet, though.
I tried to find answers in the forums, and found this thread:
https://wordpress.org/support/topic/fourteen-extended-with-twentyfourteen-child
I clicked on the plugin direction, and that’s when I found out there is no more “Fourteen Extended”.
https://wordpress.org/plugins/fourteen-extended/Lol? This all seems pretty messed up!
Forum: Themes and Templates
In reply to: [Bose] Bose, problem with italian languageHeya, did you try switching to another theme to see if your Italian language file procs at all? If you find out it does or doesn’t, we have a better understanding of where to start with this.
Grazie!Forum: Themes and Templates
In reply to: [ExpressCurate] RSS feed icon next to search b arAnd that is why there was a step 1 in my guide.
If you’re planning on updating your theme (which you should), the RSS icon will reappear. Unless you make a child theme.I checked the link to your website again, and the changes in the CSS don’t seem to be picked up at all.