batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Decode] sidebar css edits fail?@scott Smith
I think the OP meant WP 3.8.1 not Decode not playing nice together.Forum: Themes and Templates
In reply to: [Theme: Balita] random image stuck at the top of pageYou have the Coming Soon thingy activated, can’t see the site.
Forum: Themes and Templates
In reply to: wordpress latest version is infected44 Anti-Virus programs found it clean
2 Timed out before finishing the scan
1 Says it’s infectedIf you use the 1 that says it’s infected, it might be time for a new Anti-Virus program.
Forum: Themes and Templates
In reply to: Converting HTML UI to a WordPress ThemeIn that case I would start with a theme that has no styling other than layout. Almost all the items in that “kit” are just css styling. If you can use Chrome devtools or firebug you could easily transfer from the kit, to modifying an existing theme.
Something like Response would be a decent one to start with. There are others that are more “un-styled”, but I cant remember them now.Forum: Themes and Templates
In reply to: Want to Move Top Navigation to Bottom of PageThere’s a couple ways to do this with css.
The first would give the navbar a an absolute position at the bottom of the page:nav { position: absolute; bottom: 0; }The problem with this method is if the page is very long they would have to scroll all the way to the bottom to even see it.
The second gives the navbar a fixed position at the bottom of the browser window but always in view:
nav { position: fixed; bottom: 0; }Either way use a css plugin or create a child-theme.
Forum: Themes and Templates
In reply to: Converting HTML UI to a WordPress ThemeI’m curious to know if you want to do this for the experience of building a theme, or because you want to use a flat theme?
Forum: Themes and Templates
In reply to: Media LibraryI’m not positive I don’t use gallery features much, but can’t you just go into edit the page and remove the gallery there?
EDIT:
Just tried this, go into the edit page screen and click the text tab on the top right of the editor.
The gallery will show up as a string of #’s[gallery ids="25,37,42,21"]If it’s 2 separate galleries just remove the one you don’t want.
If your not sure remove 1 by cut and paste into text editor, then update the page, if it’s the wrong one go back in, remove the right one and paste from the text editor to the page editor.Forum: Themes and Templates
In reply to: Removing extra spacing#reply-title { padding-top: 10px; }Forum: Themes and Templates
In reply to: Help to discover themeThey must have put something in the code that blocks the change. The only two options I see are continue to wait and see if they eventually help or change themes (and not another one from that company).
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Twenty Thirteen Header customisation@robcnz
Cant believe this was as easy as it is.
Give your home-link class a float:left; then margin or padding if needed
Give your navbar id a clear: both;Forum: Themes and Templates
In reply to: [Twenty Thirteen] Twenty Thirteen Header customisationDid you add the title links in the header.php by chance?
For some reason the nav background color is affecting the title links.Could you possibly post your header.php of the child to pastebin?
http://wordpress.org/support/topic/help-to-discover-theme?replies=3
Check the first reply
Forum: Themes and Templates
In reply to: [Sugar and Spice] How to undisplay comments on pages only?Go into Pages > All Pages
Click the box next to Title to select all pages
In the Bulk Actions drop-down select edit then click apply
On the next scree select Do Not Allow in the comments drop-down
click updateForum: Themes and Templates
In reply to: Help to discover themeIf your theme does not have an area to enter custom css then install a plugin that can do that.
Then add the following code:.meta-data { display: none; }Forum: Themes and Templates
In reply to: Help to discover themeto change the posts page go to Options > Reading
Set home to static and select the page you want as your home, then set blog to whatever page you want the post to show on.
You need to already have a page made that your posts can appear on.