batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to Center Entire Website in CSSThere are quite a few problems with your site.
Your child-theme css file has HTML and PHP coding in it.
You have 2 <div> tags with the ID=”header”, an ID can only be called once per page. This causes your header to link to both your homepage & photobucket.
All the main content is inside the first header div tag.
You have a plugin that calls an external css file, that same css is embedded in the head section twice.
And it appears your site has just gone offline.
Forum: Themes and Templates
In reply to: Align logo and menuI suggest using a custom css plugin and entering the following code.
#logo { float: left; }This is optional if you want space from the top of the page for the menu.
#menu_container { margin-top: 70px; }Forum: Themes and Templates
In reply to: Matching .org theme to .comEDIT: I just realized some of the changes you want require editing PHP files so you will need to create a child-theme.
For the margins, its actually padding that your looking for, I think. Try this.
#page { padding: 0 3.6em; }For the link color and entry title:
.entry-title, a { color: #00adf7 !important; }Forum: Themes and Templates
In reply to: [Spun] External Background and Header Not LoadingProbably be easier just to re-upload the files in the admin panel from the live site the same way you did before it was live.
Forum: Themes and Templates
In reply to: [Spasalon] Line Breaks at Home Page Services SectionThis will keep the words from breaking but still leave it justified. You can change justify to left if you so choose.
.home_service_para p { text-align: justify; word-wrap: normal; word-break: normal; }Forum: Themes and Templates
In reply to: [Tiny Forge] Logo on Mobile site?If you use the following code it should scale to the width rather then hiding it.
#site-logo-image { max-width: 100%; }Forum: Themes and Templates
In reply to: no html code in footer phpIf it’s a script ( <script ) you will want it just above the </body> tag.
Forum: Themes and Templates
In reply to: [Hueman] Change height of header?#header .pad { padding: 0 30px 0 30px; }I have found there is no “easy fix” with this theme.
Forum: Themes and Templates
In reply to: [Hueman] Change height of header?Are trying to put something between the header text and the top of the page?
Use this instead of the other code..pad:before { height: 200px; }Forum: Themes and Templates
In reply to: full width image on pageIf your adding through the Add Media button, make sure you scroll down on the pop-up page, in the bottom right corner you can change the size.
Forum: Themes and Templates
In reply to: [Hueman] Change height of header?Add this to a child-theme css, or a custom css plugin.
#header .container-inner { height: 200px; }Forum: Themes and Templates
In reply to: [Sugar and Spice] Changing Colors of Post titles & linksSee if this works:
.entry-content a { color: #00ff00; } .entry-content a:hover { color: #ff0000; }Change the color code to your preferred color.
Forum: Themes and Templates
In reply to: Post Title Help…..I think you mean you want to center it in the grey bar height wise, is this correct?
If so, go into your Jetpack options and activate the custom css module.
Then enter this code:.home #content h2 { padding: 6px 0 7px 20px; }Forum: Themes and Templates
In reply to: [Twenty Fourteen] Footer.php Copyright InfoI see your using a child-theme.
Go into Appearance > Editor
Add this to the style.css.site-info { color: #000; }Forum: Themes and Templates
In reply to: [Spun] Titles under circles?change
text-align: centered;
to
text-align: center;