batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Text Area Under FootersOops, my bad, sorry.
http://www.themesandco.com/snippet/add-widget-area-header/Forum: Themes and Templates
In reply to: [Blaskan] What is this number to the right of the post date ?Someone or something has placed favicon links in the header area instead of the head area.
Betwwen the two links is the number 2 in plain text.
</header>
<link rel=”icon” href=”http://www.markwebber.org.uk/favicon.ico” type=”image/x-icon” />
2 <link rel=”shortcut icon” href=”http://www.markwebber.org.uk/favicon.ico” type=”image/x-icon” /><!– / #header –>
Forum: Themes and Templates
In reply to: [Customizr] Text Area Under FootersThe tutorial teaches how to add a widget area below the header. I think if you replace all instances of header with footer in the tutorial it will add a widget area after the footer.
Forum: Themes and Templates
In reply to: [Customizr] Text Area Under FootersI THINK you can use this tutorial and replace all instances of header with footer, mind the capitalization.
If I’m wrong someone will definitely be in to say so.
Forum: Themes and Templates
In reply to: [Portfolio Press] Don't Like My Header. Can You Help ? ….don’t think the tabs are necessary at the top
Just realized you were talking about the top menu.
Here’s some screen shots of stuff I’ve been playing with. Let me know if you like any of it.http://s29.postimg.org/4s45wtqvb/Untitled.png
http://s1.postimg.org/ve12aintr/Untitled2.png
http://s27.postimg.org/yzikfyss3/Untitled3.pngForum: Themes and Templates
In reply to: [Portfolio Press] Don't Like My Header. Can You Help ? ….If you don’t like it just remove from custom css and save or update.
Forum: Themes and Templates
In reply to: [Portfolio Press] Don't Like My Header. Can You Help ? ….Try this in your custom css:
#navigation ul a { color: #555; } #navigation ul a:hover { color: #FFF; } #navigation ul .current-menu-item a { color: #FFF; } #branding { background: transparent; }I started playing around with this for fun on the demo site, here’s the outcome.
Here’s the code. Will need to adjust the #site-navigation top value with @media query breakdowns.
#site-navigation { position: absolute; top: 120px; left: 0; background: transparent; width: 100%; margin-left: 0; } #menu-main-menu { text-align: center; } #breadcrumbs { margin-top: 50px; } #site-navigation li a { color: #999; }The code alex27 gave you for the gap will work on all pages if you remove the “body.home” part. It should then look like this:
#main { padding-top: 0; }
On the linked screenshot below the blue highlighted part on the bottom left window shows the body tag with the “page-id-30”. You can find similar inspection windows in most browsers by pushing F12 on your keyboard.
http://s28.postimg.org/u98a4ab0d/Untitled.pngForum: Themes and Templates
In reply to: Add logo above haeder image#branding { background: url(http://acupunctuurbaidu.ophetweb.nu/wp-content/uploads/2014/02/Utrecht-Acupunctuur-logo1.jpg); background-size: contain; padding-top: 24%; }Forum: Themes and Templates
In reply to: [Customizr] Text Area Under FootersUsing a child-theme downloaded here you could add an area either above or below by editing the footer.php.
Forum: Themes and Templates
In reply to: visual editor removes codeThat’s the purpose of a WYSIWYG editor, hides the code for those not familiar or uncomfortable with it.
You would use the menu bar and drop-downs for adding formatting and styling.Forum: Themes and Templates
In reply to: advice on integrating wp blog and websiteUsing the permalinks option in settings your site structure could be:
http://www.siteaddress.com/WPfolder/ = Home page
http://www.siteaddress.com/WPfolder/about/ = About page
http://www.siteaddress.com/WPfolder/contact/ = Contact page
http://www.siteaddress.com/WPfolder/blog/ = Blog page
These would all be stored in the database, no need for static html files.the layouts for some of them would be largely different
By design?
You could always use custom page types to have different layouts for the different pages. And some themes already have these.Maybe I’m not understanding your ultimate goal.
Forum: Themes and Templates
In reply to: [Oxygen] Using both image header and text headerThis will need a header.php edit. Make sure you use a child theme so it’s not overwritten during a theme upgrade.
<div id="custom-logo"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><img src="LINK TO LOGO" alt=""/></a></div>You can then style and place with css.
Forum: Themes and Templates
In reply to: Artificer Header – Unable to remove blank space#navigation { margin-bottom: 0; }