ModularBase
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Logo URL ImageDid you try, in your Dashboard : Appearance > Header ?
You can upload header image there.Forum: Themes and Templates
In reply to: Logo URL ImageA link to your site, please.
Forum: Fixing WordPress
In reply to: How to align image in text widget?Put quotations around the 80 and needs height in pixels.
<img src=”http://mysite.com/wp-content/uploads/2013/07/joe.jpg” width=”80″ height=”” class=”alignright”>
Forum: Themes and Templates
In reply to: Changing footer menu colour & sizeGo to Plugins – http://ww.wp.xz.cn/plugins/.
Search for “custom css”.
Choose a plugin and install it.Once installed, put this in the plugin’s entry window…
.footer_menu ul li a{ color:#ffffff;background-color:#ffffff;font-size:1em;} .footer_menu ul li a:hover{ color:#ffffff;background-color:#ffffff;} .footer_menu ul li.selected a{ color:#ffffff;background-color:#ffffff;}…and change to desired colors.
Forum: Themes and Templates
In reply to: [Mantra] How to disable "leave a post"Go back to the pages which allow comments and deselect the “Allow comments.” in the Discussion box. Do this for each page and at the bottom of the page when you view it, you will see “Comments Closed”
Forum: Themes and Templates
In reply to: Child theme css“The “Theme Name” can be anything…except identical to the parent theme’s name.”
This is true. I was only trying to establish that this was correct.
Perhap Form/Function does not support child themes? You could ask them: https://creativemarket.com/pjrvs/4780-FormFunction-WordPress-Theme
Forum: Themes and Templates
In reply to: Child theme cssNotice how in the parent theme, the Theme Name.
Theme Name: Form/Function Theme Theme URI: http://pjrvs.com/ff Version: 1.1 Description: The razor's edge of form and function. Author: Paul Jarvis Author URI: http://pjrvs.comYour child theme should have it’s name at the top of your child theme CSS, as well as any other files in your child theme except the functions.php which should, for starters, only have:
<?php ?>Forum: Themes and Templates
In reply to: Child theme cssAt the top of your CSS, does it look like this exactly?
/* Theme Name: formfunction-child Theme URI: http: //workingmagician.com/ Description: This is a custom child theme I have created. Author: David Allan Author URI: http: //workingmagician.com/ Template: formfunction Version: 0.1 */ @import url("../formfunction/_/style.css");Forum: Themes and Templates
In reply to: Child theme cssJust to clarify,
The parent theme is Form/Function
and your child theme’s name is …?Forum: Themes and Templates
In reply to: [Mantra] How to disable "leave a post"In your Admin, go to Settings > Discussion.
Deselect “Allow people to post comments on new articles”, the “Save Changes” button at bottom. This disables comments on Pages and Posts.For the Page you want comments on, when you create that page, select “Allow comments.” in the Discussion box. For Posts, do the same for each post you make.
There is a way using CSS, but this may be simpler if you’re just starting with WordPress.
Forum: Themes and Templates
In reply to: Child theme cssDid you try:
@import url("../formfunction/_/main.css");Because I can see the theme’s CSS here: http://www.workingmagician.com/wp-content/themes/formfunction/_/main.css – which is the main CSS for the theme.
Forum: Themes and Templates
In reply to: [Hum] Getting image to span the whole content areaI don’t have 20-11, only the latest 20-12 and 20-13, so I can only go by 20-12’s templates and I’m assuming you’re using the “content-page.php” template.
In 20-12’s CSS (…which may be the same as 20-11’s), there is this:
/* Responsive images */ .entry-content img, .comment-content img, .widget img { max-width: 100%; /* Fluid images for posts, comments, and widgets */ }…just after it, try:
.page-id-number .entry-content img{ width:100%; height:auto; }Forum: Themes and Templates
In reply to: Problem with drop down menue formatIn your CSS, you have:
.navigation .menu li .sub-menu li{ font-size:14px; padding-bottom:0; line-height:20px } .navigation .menu li .sub-menu li a{ display:block; padding:5px 11px; border-radius:0; -moz-border-radius:0; -webkit-border-radius:0 }Try adding to “.navigation .menu li .sub-menu li”:
width:100%; display:block;and adding to “navigation .menu li .sub-menu li a”:
width:100%;Forum: Themes and Templates
In reply to: [Hum] Getting image to span the whole content areaWhat theme are you using?
Forum: Themes and Templates
In reply to: [Customizr] html tags below Comment boxWelcome. Mark this “Resolved”, then.