batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Matching .org theme to .comI don’t see anything that requires a child-theme cause it’s all just css edits so far. If that changes you will want to create a child-theme.
For the css you only need to add any changes you make to a css plugin, you can /*comment your changes to make it easier to understand*/ notice the /* to start a comment and */ to end a comment.
If you choose to create a child-theme, css edits can go in the style.css file.
Forum: Themes and Templates
In reply to: PHP FilesYour site is not in trouble much, just re-download the themes zip file, unpack it to your desktop, locate the footer.php, upload it to the appropriate directory on the server and all will be good again.
Forum: Themes and Templates
In reply to: Matching .org theme to .comAll edits should be made to either a child-theme (especially if you plan on php file edits) or a custom css plugin; any edits to the default theme files will be gone if the theme is updated.
Center the menu & Site title, you can then remove the center for h1 tags and other titles will align left:#masthead { text-align: center; }It looks like your widgets got pushed down (are these the ones your talking about?) you can hide them all or individually:
Remove/hide widgets:.widget-right { display: none; } .widget-left { display: none; } .widget-middle { display: none; }Forum: Themes and Templates
In reply to: [Coller] header with logoUse a child-theme or custom css plugin. You may need to adjust the margin-left depending on the size of your logo.
.site-branding { background: url('LINK TO LOGO HERE'); background-repeat: no-repeat; background-size: contain; } .site-title { margin-left: 140px; }Forum: Themes and Templates
In reply to: Sticky Navigation IssueForum: Themes and Templates
In reply to: TwentyTen Responsive ?The only thing I see not responsive is the branding image.
You should be able to fix that with this block of css added to a custom css plugin.#branding img { max-width: 100%; height: auto; }Forum: Themes and Templates
In reply to: TwentyTen Responsive ?TwentyThirteen is responsive and would fit the TwentyTen layout better than TwentyFourteen.
Install it through the admin panel and preview it so you can gauge how much work might need to be done.Try using primary secondary declarations
#primary {
width: 70%;
}
#secondary {
width: 22%;
}Forum: Themes and Templates
In reply to: [Spun] inserting words into circlesYou can activate it through Appearance > Themes
If it was done correctly you should see it in the list of available themes.
When you first activate it your site should look no different than the parent theme..jumbotron h1 { font-size: 100px; }Forum: Themes and Templates
In reply to: Trouble with padding and height with percents (CSS)So is there any way to adjust the code to cover the amount I want?
Not that I’m aware of, because your dealing with 2 different sized elements with the same class/ID.
About the closest you can get with css is what i posted above, to the best of my knowledge.
Theoretically you should be able to edit the proper PHP files to give them 2 different classes/IDs. I’m not a PHP guy, don’t even know which files to look in.
Forum: Themes and Templates
In reply to: TwentyTwelve-child suppress header & menuLet’s get real specific and get rid of un-needed elements.
@media print { body{ background-color:#FFFFFF; background-image:none; color:#000000 } #masthead{ display:none;} .site-content{ width:100%;} hgroup{ display:none;} nav{ display:none;} .entry-content p{margin:10px 0 0 0; padding:0; line-height: 1.5;} .addthis_toolbox.addthis_default_style {display: none;} .site-content article {border-bottom: 0;} }Forum: Themes and Templates
In reply to: [Twenty Eleven] Image in footer?For adding your own site info comment out this section of the site-generator div in the footer.php like so:
/*<?php do_action( 'twentyeleven_credits' ); ?> <a>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>*/Then use standard html to add your info in the site-generator div.
Forum: Themes and Templates
In reply to: [Twenty Eleven] Image in footer?You should be able to add something like this just before the closing footer tag for it to be part of the footer, or just after the tag to make it separate. </footer>
<div id="footer-image"><img src="LINK TO IMAGE" /></div>You can then use css to position & style.
Forum: Themes and Templates
In reply to: [Minimatica] Clickable Header IMAGE; link too lowRather than add to your header.php file, you can just style your site title as so:
#site-title a { display: block; color: transparent; float: right; }Or if you insist on using a php edit make it like this:
<div id="click-area" role="banner" onclick="location.href='http://www.designpush.co.uk';" style="cursor: pointer;" title=Home></div>Then position & style with css:
#click-area{ width: 300px; height: 150px; position: relative; /*Not sure if this is right*/ top: -50px; right: -50px; }