Martin Robbins
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How can I change individual tab colorGreetings
Have you tried “inspecting the element” you want to modify using browser developer tools? That’s usually how to find its selector. Then you can add it to your CSS.
Or please provide the url link to your site so someone here can provide further asstance.
Good Luck.
Forum: Themes and Templates
In reply to: Different mobile theme & regular themeHave you tried jetpack plugin to implement alternate mobile site? (of the same theme)
You can search the repository for free themes with RTL support like this:
Forum: Themes and Templates
In reply to: Remove Header and footer from one pageNice try ;|
Your html5 header and footer don’t have the ID nor class you specified. It should work like this:
body.page-id-8194 header, body.page-id-8194 footer { display: none; }It’s probably easier to leave the php templates alone (put them back how they were). And use CSS only to implement your design.
The various comments elements would remain marked-up within the div#content. You can reposition them with CSS and you won’t have to deal with the large gray area at all.
Greetings
In theme TwentyEleven I believe there are some really good reason the comments template is within the div#content…
What were you attempting to accomplish in the first place?
<?php /** * Template for displaying all pages * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site will use a * different template. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <div id="primary"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php comments_template( '', true ); ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> </div><!-- #primary --> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: New Root Install vs. Existing SubdirectoryGreetings, Great Questions…
Of the two approaches — new root installation vs. existing subdirectory installation — is one approach safer than the other?
Which approach is easier, and which approach is safer?
I’d say for the most part the choices are fairly even. I would choose a subdirectory install to go alongside existing html site that has to stay up during transition and then redirect. And use the Redirection plugin.
In your case, my vote for the one already in place.
Forum: Installing WordPress
In reply to: What folder to install to?Great question
Here is a reference I would suggest read the whole thing before you try any changes: https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory#Using_a_pre-existing_subdirectory_install
From the reference:
WordPress allows you to install it into a subdirectory, but have your website served from the website root.
Good Luck
Forum: Fixing WordPress
In reply to: Theme is too big to import. Where can I ftp it to to installGreetings, good question
- unzip the theme zip file
- ftp the unzipped theme folder into /wp-content/themes/
Good Luck
Forum: Fixing WordPress
In reply to: Can't get my website to look like the theme demoI know what you mean, I got frustrated a lot when first starting out.
it doesn’t look anything like the live demo.
Typically the live demo will have some posts and pages with content and images. Your site will not appear similar because you don’t have those content images.
Are there any themes where you don’t have to rely on CSS so much?
Hopefully after you have inserted some content you will see that you don’t have to rely on CSS as much as you thought.
Another possibility is: Instead of the live demo, read the theme description and it will tell you in words how it is styled and then you can choose one where you won’t have to modify the styling.
Good Luck
You are welcome, good question
Can I do something in the WordPress config to change the generated file’s default permissions?
I don’t think you can do it like that. Generated files usually inherit owner and permissions from their parent folder.
Good luck
Forum: Installing WordPress
In reply to: Where to start?Greetings, Great Question
I’ve just made a free account and tried to put in add the custom theme, is that possible?
If the free account you mean http://wordpress.com/ … I don’t think it is possible to use your own custom theme.
To get started, generally, you’re going to want to do what we call a sub-directory installation of WordPress. This is very important so you don’t take down the existing site.
First I would suggest to contact Moonfruit to verify their systems do in fact support WordPress at all.
Reference this section: https://codex.wordpress.org/Installing_WordPress#In_a_Subdirectory of this page: https://codex.wordpress.org/Installing_WordPress
Good Luck
Forum: Themes and Templates
In reply to: [Hueman] line between postsYou can try varying the size, style and color like this:
.post-list .post { width: 100%; border-bottom: 5px dotted #008800; }or
.post-list .post { width: 100%; border-bottom: 10px inset #888888; }reference: http://www.w3schools.com/css/css_border.asp
Forum: Themes and Templates
In reply to: Tagline font sizeIt appears the tagline is not there. Did you remove it somehow?
After you might put it back, I would suggest you should try a custom css plugin like the one in jetpack, that way you don’t have to figure out which file to modify. Try this code:
#header h3.tagline { font-size: 24px; line-height: 36px; }Forum: Themes and Templates
In reply to: Tagline font sizeGreetings
The tagline selector is:
#header .tagline {}And the existing code is:
.post-content h3, .project-content h3, #header .tagline { font-size: 16px !important; line-height: 24px !important; }Good Luck
You are welcome Serge
Have you tried setting the “featured image” within the post editor?
Good Luck