batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Removing extra spacing#logo { padding-top: 0; margin-top: -40px; }Forum: Themes and Templates
In reply to: [Twenty Fourteen] Footer bakground image.site-footer { background: url('imageurl.jpg'); }leave off the image part, and make sure you leave the z-index value.
Forum: Themes and Templates
In reply to: [Expound] Change colour of text in a blockquotetry this:
blockquote p { color: #ff0000; }Forum: Themes and Templates
In reply to: [Medicine] how to change position of logoYou can do this with css depending on where you want to move it.
Target the logo id to move it.
Try this code in a custom css plugin or child-theme for an example.#logo { margin-left: 200px; }Forum: Themes and Templates
In reply to: [Twenty Ten] Wierd Links At Top Left of PagesIt sounds like your site might have been hacked.
http://codex.wordpress.org/FAQ_My_site_was_hackedForum: Themes and Templates
In reply to: [Suits] Change title font size in SuitsIt’s usually something like this:
.entry-title { font-size: 30px; }Forum: Themes and Templates
In reply to: key phrase to search for themes with slideshow built inThat functionality can be added to most any theme with a plugin.
But to answer your question use slideshow.Forum: Themes and Templates
In reply to: Codes showing under Leave a comment boxThat just tells people they can use those tags to format the comment if they want to when they leave a reply.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Removing the border from imagesFor the title:
.entry-title { font-size: 2.0em; }Default was 1.5em
Forum: Themes and Templates
In reply to: [Sugar and Spice] Removing the border from imagesYou forgot the opening curly brace after img.
.entry-content img { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }Forum: Themes and Templates
In reply to: TwentyEleven content background colour issueTarget this tag and give it the background color you want:
#main{ background:#000000; }Forum: Themes and Templates
In reply to: [Theme: ComicPress] Custom CSS not working on internal linksleave the :link part off, if you needed that for something else then add my code above separately and not by altering what you have.
Forum: Themes and Templates
In reply to: [Theme: ComicPress] Custom CSS not working on internal links.copyright-info a { color: #fff !important; }Forum: Themes and Templates
In reply to: [Theme: ComicPress] Custom CSS not working on internal linksrgb 255 255 255 is white, try
.copyright-info a { color: #fff; }not sure you need the link part in there
Forum: Themes and Templates
In reply to: [Theme: Gold] Header text alignmentYou can adjust the margin top/bottom #’s on the last piece of code to pull the content up in the page.
You could even give it a margin: 0 so there is no vertical spacing.