Tareq
Forum Replies Created
-
You can remove the title altogether, however it’s only an
H2standard HTML element so if you were to remove it, it would also remove any otherH2element on your site.You’d be best at looking into creating a custom class for that specific heading then setting it to
display: none;in the CSS.If you want to remove the H2 element completely:
h2 { display: none; }Forum: Themes and Templates
In reply to: Expound: Hide Site Title and Tagline on TabletLook into:
@media screen and (max-device-width: 480px){ /*--- iPhone only CSS here ---*/ }Obviously this is for iPhone but if you need dimensions for the iPad and iPad mini, have a look at Responsinator
Forum: Themes and Templates
In reply to: [isis] Header textI wouldn’t usually recommend this without using a child theme but do this:
Dashboard -> Appearance -> Editor
Click on
head1.phpon the right hand side. When that page loads in the editor, see the<!--LOGO END-->and the</div>a few lines above that. Paste this just above that closing div element:<div class="desc"><?php bloginfo('description'); ?></div>This will allow you to display your tagline but please remember that if your theme is updated you will need to do this again as your edits will be overwritten.
Forum: Themes and Templates
In reply to: My own theme does not work – please help!If you’re planning to run a production site, don’t forget to turn off your WP_DEBUG.
Forum: Themes and Templates
In reply to: screen options: location -please help-On the post edit screen, in the right hand sidebar is the Publish Panel where it says Visibility: Public etc. Click edit on that item then select stick this post to the front page.
Save this then the Location Panel will appear on the right sidebar at the bottom. You can then turn the Sticky setting off if you wish and the Location Panel should stay put.
Forum: Themes and Templates
In reply to: screen options: location -please help-Ah ok, I misunderstood then, my bad!
I’ll have a look into it and get back to you!
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Textarea backgroundTry:
.entry-content { background: #000000; color: #ffffff; }With whichever colors you like.
Forum: Themes and Templates
In reply to: screen options: location -please help-Up the top right hand side is the Screen Options panel, click it and it’ll slide down! Then you can select your panels from there.
Forum: Themes and Templates
In reply to: [Spine] Change amount of text shown on main pageDashboard -> Settings -> Reading:
Change the following on this page:
For each article in a feed, show -> Full text
Forum: Themes and Templates
In reply to: [Customizr] Theme does not updateAre you running the latest version of WP, currently 3.8.1?
Your menu is going to a child page, check in your pages to change it from a ‘child page’ to a ‘parent page’. Then go into your Menus and change the page in there too.
Forum: Themes and Templates
In reply to: [Journalism] Remove author and date from postsRather than edit each CSS file, create a child theme and pop this in it!
.post-data { display:none; }Link to your site?
Forum: Themes and Templates
In reply to: [evolve] Post background and text colorCool, glad to hear it’s sorted!
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Textarea backgroundIf you post a link to your site, I’ll take a look at it.
It’s much easier to work with when I’m looking at the site in question and fiddling around with the Developer Tools in my browser.