Forum Replies Created
-
AuthorPosts
-
January 9, 2013 at 6:56 am in reply to: CSS Changes to Quick Search and Top Search in AgentPress #10646Brad DaltonParticipant
.wolfnet_widget.wolfnet_quickSearch .wolfnet_widgetTitle {
background: none repeat scroll 0 0 red;
font-size: 1.5em;
font-weight: bold;
}Try adding new properties to this CSS code for the styles you want http://www.w3schools.com/css/css_background.asp
Logo looks good!
Brad DaltonParticipantThe Genesis Simple Edits plugin offers shortcodes: [footer_backtotop]
1. You could put this next to your sub headings
or
2. create anchor points manually using HTML
Brad DaltonParticipantI've written a tutorial on how to do this.
With Genesis its fairly easy. http://wpsites.net/web-design/image-slider-home-page-only/
Otherwise you could add a widget area to the home page and use the Genesis slider in that area.
Here's an example: http://www.briangardner.com/home-widget-area-eleven40/
Plenty of StudioPress themes offer the slider on the homepage with widget areas which you could use for featured images.
Brad DaltonParticipantI also use that theme.
You could use the home page widgets with some high quality images/icons and make it a bit like your other site.
Brad DaltonParticipantYou can create the portfolio page using this tutorial or install a plugin (Beta)
Brad DaltonParticipant'seem to get 20 posts on my home page no matter what I set posts_per_page to'
This may have something to do with Blog pages show at most on the Reading Settings.
Brad DaltonParticipantI think its because you added a caption (text below images) to your portfolio images.
The caption adds a border which conflicts with the image border so you'll need to remove the caption or edit your child themes style.css
Line 719
.single-portfolio img {
border: none;
}
Brad DaltonParticipantGo to the Genesis > Theme Settings > Content Archives and adjust the settings there for displaying posts on your blog archives page.
To change the color, go to your child themes style.css file and change the values for the color properties under the Headlines section:
h1,
h2,
h2 a,
h2 a:visited {
color: #E96B2E;
font-family: 'Oswald', arial, serif;
font-size: 24px;
line-height: 30px;
}
Brad DaltonParticipantJust insert the image into a new post, use the advanced image settings for alignment and then grab the html from the text editor and paste it into a hook location using the plugin.
Can be before header or using one of the title hooks
no css or php
But it will be on every page unless you include a conditional tag
Brad DaltonParticipantInstall the Genesis Simple Hooks plugin and paste the HTML for the image into the genesis_before_header hook field
http://wordpress.org/extend/plugins/genesis-simple-hooks/
Brad DaltonParticipantI think News is better for blogging whereas Corporate is better for a company, product/service.
Once you own Genesis, its really easy to change themes without any problems
Brad DaltonParticipantThat site is built on the Corporate theme.
Adding Banner logo is simple.
Changing color of menu bar is pretty easy.
The news theme is more flexible than the Corporate theme and offers more page templates.
You can easily add different widgets to your homepage from the widgets area.
Brad DaltonParticipantNo need to install any of those plugins.
Simply create the HTML (text and image) and paste it into a widget.
You could make the text white in your editor while creating it or use the CSS.
#header .widget-area {
float: right;
padding: 20px 0 0;
width: 300px;
color: white;
}<a href="http://tomjdolan.com/wp-content/uploads/2013/01/tom.jpeg"><img class="alignleft size-full wp-image-37423" alt="tom" src="http://tomjdolan.com/wp-content/uploads/2013/01/tom.jpeg" width="65" height="65" /></a>Welcome to Performance of Speaking, dedicated to Beginning & Advanced Speakers World-wide.
<a href="http://tomjdolan.com/wp-content/uploads/2013/01/tom.jpeg"><img class="alignleft size-full wp-image-37423" alt="tom" src="http://tomjdolan.com/wp-content/uploads/2013/01/tom.jpeg" width="65" height="65" /></a><span style="color: #ffffff;">Welcome to Performance of Speaking, dedicated to Beginning & Advanced Speakers World-wide.</span>
Brad DaltonParticipantHere's 3 plugins which all add custom classes to widgets
Create a name for the custom class and use that as the selector for changing the text color in the header right profile widget
http://wordpress.org/extend/plugins/kc-widget-enhancements/ KC Widget Enhancements
http://wordpress.org/extend/plugins/custom-widget-classes/ Custom Widget Classes
http://wordpress.org/extend/plugins/widget-css-classes/ Widget CSS Classes
Brad DaltonParticipantI thought you where using a text widget but you are using a profile widget.
The easiest way would be to paste the text and insert an image aligned left in a new post draft and grab the html from your text editor there and paste it into a text widget in your header right.
Otherwise the text will be white for all profile widgets as previously stated.
Not sure how to isolate one profile widget but i'll try and find out for you
Brad DaltonParticipantI pasted it at the end of the child themes style.css and it worked fine for me.
You could add the declaration for color in the existing CSS code
#header .widget-area {
float: right;
padding: 20px 0 0;
width: 300px;
color: white;
}
Brad DaltonParticipantIf you installed the Simple Hooks plugin you can remove the footer and then use the code to customize your own.
I tested this and it works.
The code comes from StudioPress and so does the plugin.
Brad DaltonParticipantBrad DaltonParticipantBrad DaltonParticipantInstall the Genesis Simple Hooks Plugin http://wordpress.org/extend/plugins/genesis-simple-hooks/
and find:
genesis_footer Hook
This hook, by default, outputs the content of the footer (inside the #footer div).
Unhook genesis_do_footer() function from this hook? (Unhook this function to remove your footer)
-
AuthorPosts