batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Widget area background colorMay have to clear browser cache, it did work in Chrome DevTools.
Forum: Themes and Templates
In reply to: [Magazine Basic] Magazine Basic, Image Widget formattingThe first one will remove the items from all widgets, the second from image widgets.
.widget { background: none; border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }.widget_sp_image { background: none; border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }Forum: Themes and Templates
In reply to: [Twenty Thirteen] Widget area background colorLooks like you forgot the period in front of widget.
.widget { background-color: #fff; }Forum: Themes and Templates
In reply to: [Spasalon] White box where call us should beCan confirm white text on black background, it did take a few seconds to load.
Forum: Themes and Templates
In reply to: [Theme: Frontier] how to create navigation barFor the image header, it is not as wide as the content area so it will not stretch the full width unless told to with css. BUT that will either distort or enlarge the image so it’s not as clear.
For the menu, the li & ul elements have a float: left applied to them. It can easily be fixed with this code.
#nav-main .nav-main { float: none; text-align: center; border-left: none; border-right: none; } #nav-main .nav-main li { float: none; display: inline-block; }Forum: Themes and Templates
In reply to: Reformatting Content/Sidebar width Twenty TwelveSo I just looked at your page source (from the link above) and noticed your not using WordPress, it appears to be Blogger instead???
Forum: Themes and Templates
In reply to: Reformatting Content/Sidebar width Twenty TwelveI’m not sure what it should look like but I see a very cleen simple layout.
http://s10.postimg.org/43rdnhne1/Haute_Design_by_Sarah_Klassen.pngThe only thing I noticed is that the whole page aligns to the left instead of the usual center. Is this by design? In the screen shot I centered it with some simple css edits.
Forum: Themes and Templates
In reply to: [Fruitful] How do you make a drop down menu from a parent page?I just downloaded the theme and tried it, worked fine.
Here’s an image of my very simple menu layout.
http://s21.postimg.org/qqphsbiiv/Untitled1.pngForum: Themes and Templates
In reply to: [Customizr] Can't change MENU box background color.nav-collapse.tc-hover-menu-wrapper { width: auto; }Forum: Themes and Templates
In reply to: [Fruitful] How do you make a drop down menu from a parent page?Forum: Themes and Templates
In reply to: [Theme: Frontier] how to create navigation barDo you have 2 menus in Appearance > Menus?
Do you have them set in Appearance > Customize?
Do you have the topbar menu set in Appearance > Frontier Options?Forum: Themes and Templates
In reply to: Can I easily reinstall a previous theme?Correct. If you use Appearance > Themes in the admin panel you can just re-activate your original theme.
Forum: Themes and Templates
In reply to: [Restaurateur] Child ThemeI would do #2 at the end.
1
3
4
5
2That way you can compare the parent / child before any update changes, if there are any.
Forum: Themes and Templates
In reply to: [Restaurateur] Child ThemeAll those edits will be gone if the theme is updated. You can move the edits to the child-theme. And you should definitely start one now if you haven’t already.
Forum: Themes and Templates
In reply to: [MesoColumn] Logo runs off the page on Firefox and ExplorerTry adding a max-width to your site-info.
#siteinfo { max-width: 100%; }