batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twelve] Adding More Than One Logo/Header ImageLook for this section in the header.php
</hgroup>
ENTER YOUR CODE HERE
<nav id=”site-navigation”Be sure to give it a unique id.
For a link with image:
<a href="LINK TO EXTERNAL SITE"><img src="LINK TO IMAGE" /></a>For a CSS style button:
<a href="LINK TO EXTERNAL SITE" target="_blank">TEXT FOR BUTTON</a>Then use css to position and style as needed.
Forum: Themes and Templates
In reply to: [Customizr] Making blog menu link on static homepageCreate a new page and leave it blank. Most people title it Blog surprisingly.
Then set that as your blog page.
Add the page to your menu and your set.Forum: Themes and Templates
In reply to: [Supernova] Creating a Landing PageYou could try this.
#nav_wrapper { display: none; } #header_wrapper { display: none; } #header_navigation { display: none; }Forum: Themes and Templates
In reply to: How to change the seperate background div colours within page?I don’t think you will find a WYSIWYG css editor plugin.
#main-content { background: #000; }Forum: Themes and Templates
In reply to: [Twenty Twelve] Adding More Than One Logo/Header ImageYes it is, it would require editing the header.php file so you would need to create a
child-theme first.Forum: Themes and Templates
In reply to: [Hueman] Remove or disable sticky top menu barThis one will “unstick” it:
.full-width #nav-topbar.nav-container { position: absolute; }This one will hide it:
.full-width #nav-topbar.nav-container { display: none; }Add to the bottom of a child-theme style.css or use a custom css plugin.
Forum: Themes and Templates
In reply to: [Hueman] Scrolling/Sticky Share linksThat is very smooth, almost missed it my first scroll down the page.
Please share!Forum: Themes and Templates
In reply to: changing text size in nav bar; changing site name header fontCongrats!
It is looking very nice indeed.Forum: Themes and Templates
In reply to: changing text size in nav bar; changing site name header fontThis is IMO the best place to learn more about CSS.
http://www.w3schools.com/css/default.asp
This should get the “Follow Blog via Email” styling in line with the rest..widget-title label { font-size: 100%; color: #fff; font-weight:bold; } #subscribe-text { font-style: normal; font-size:12px; }Forum: Themes and Templates
In reply to: changing text size in nav bar; changing site name header fontmlteditor04
I am not certain where to put all of this code, so if you have a tip, great.
CrouchingBruin
You’re not using a child theme, and I don’t know if your theme supports custom CSS. If it doesn’t, you can use JetPack’s Custom CSS option.
Forum: Themes and Templates
In reply to: some css problemsThis is what you have now
@media screen and (max-width: 480px) { .col2 p { Margin: 2em; } }Try changing the 2em value till you get the results you want.
Forum: Themes and Templates
In reply to: Bold font not displaying properlyI have a feeling you are using Chrome. It has a problem with rendering fonts in an attractive way. Here is a screenshot of 4 different browsers and what your site looks like in each.
Forum: Themes and Templates
In reply to: Gold Changing top menu font size and background colourAll CSS files are read from top to bottom. The plug in will take care of where to put the styling.
With a child theme, one of the first lines is a call to the parent CSS file so anything you put in there (below @import url) will be read after the parent css and be applied.Note: Anywhere the word “!important” is used in the parent must also be used in the child for that element to be affected.
Forum: Themes and Templates
In reply to: [Emphaino] Fixed Top BarDisregard that code, try this instead.
.site-title { margin-top: 24px; }Forum: Themes and Templates
In reply to: [Emphaino] Fixed Top BarTry this, adjust the number to what you need.
.site-header .header-main { margin-top: 1.5rem; }