Forum Replies Created
-
AuthorPosts
-
Pixel Frau
MemberTry changing this
#subnav li a:active, #subnav li a:hover, #subnav .current_page_item a, #subnav .current-cat a, #subnav .current-menu-item { background: #444; color: #fff; }
to this
#subnav li a:active, #subnav li a:hover, #subnav .current_page_item a, #subnav .current-cat a, #subnav .current-menu-item { background: #444; color: #fff; -webkit-appearance:none; }
Pixel Frau
MemberThat can be done by editing the CSS. Without having a link to your site, I can't tell you the exact CSS you need to change, but this is what's controlling it on the site you posted.
.menu-primary li a:active, .menu-primary li a:hover, .menu-primary .current_page_item a, .menu-primary .current-cat a, .menu-primary .current-menu-item a, .menu-secondary li a:active, .menu-secondary li a:hover, .menu-secondary .current_page_item a, .menu-secondary .current-cat a, .menu-secondary .current-menu-item a, .site-header .menu li a:active, .site-header .menu li a:hover, .site-header .menu .current_page_item a, .site-header .menu .current-cat a, .site-header .menu .current-menu-item a { -moz-border-radius: 5px; -moz-box-shadow: 0 1px 0 #333; -webkit-border-radius: 5px; -webkit-box-shadow: 0 1px 0 #333; background-color: #000; border-radius: 5px; box-shadow: 0 1px 0 #333; color: #fff; } .menu-primary li li a, .menu-primary li li a:link, .menu-primary li li a:visited, .menu-secondary li li a, .menu-secondary li li a:link, .menu-secondary li li a:visited, .site-header .menu li li a, .site-header .menu li li a:link, .site-header .menu li li a:visited { -moz-border-radius: 0; -webkit-border-radius: 0; background: none; border-bottom: 1px dotted #333; border-radius: 0; box-shadow: none; color: #777; font-size: 13px; padding: 5px; position: relative; text-transform: none; width: 138px; }
Pixel Frau
MemberYou can do that by assigning the menu item a class, then defining that class in the CSS.
Go to Appearance > Menus. CSS Classes is probably turned off, so click Screen Options at the top of the page, check CSS Classes, then click Screen Options again to hide them. Click the arrow to open the Contact menu item. Add something like no-rollover in the CSS Classes field and save the menu.
Then add this to your CSS:
.no-rollover a:hover { background-color: #333; border: none; }
Pixel Frau
MemberHere's what you'll need to add/change in the CSS.
Widget Title:
.home-bottom .featured-content .widget-title { /* font-family: add the font family you want to use*/ /* font-color: add the font color you want to use */ }
Widget Text:
.home-bottom { /* font-family: add the font family you want to use */ /* font-color: add the font color you want to use */ }
Pixel Frau
Member- Create the pages you want for the regular website, including the page you want displayed as your home page.
- Create a page called Blog and assign the Blog page template under Page Attributes.
- Go to Settings > Readings. Where it says 'Front page displays' select 'A static page'. Assign the page you want as your home page as the 'Front page' and the Blog page as the 'Posts page'.
- Save your changes.
That will give you a 'regular' website with the blog on a separate page.
As for the Premise settings, it really depends on how you want to set up the membership area on your site. There are lots of tutorials here: https://members.getpremise.com/help.aspx .
Pixel Frau
MemberHave you followed the Focus theme setup instructions?
Pixel Frau
MemberThere's an option to remove this in the WordPress SEO by Yoast plugin.
Pixel Frau
MemberCheck out Remkus de Vries reply in that original thread. That
filter: alpha(opacity=50);
he posted should fix the transparency in IE8. Just adjust the 50 to whatever transparency you need.Pixel Frau
MemberTake a look at the theme setup instructions. They'll tell you how to use a custom header image.
Pixel Frau
MemberHave you disabled comments in the regular WordPress settings?
Settings > Discussion: uncheck 'Allow people to post comments on new articles'
Posts > All Posts: check all, select Bulk Actions > Edit > Apply, then select Comments > Do not allowAugust 16, 2013 at 5:37 am in reply to: Unordered List Display Issue, spacing and Blockquote problems #56781Pixel Frau
MemberThe gaps in the content are extra paragraphs. Check the post editor and delete any empty lines. There seems to be a lot of extraneous formatting on those empty paragraphs as well. If you're copy/pasting from Word make sure you use the 'Paste from Word' function to eliminate unnecessary formatting and extra paragraphs, etc.
I don't see any problem with unordered lists or blockquotes. If you're still having trouble there, could you be more specific about what the problem is and what exactly you want to change?
Pixel Frau
MemberDoes the WordPress indent button not do anything for you?
Pixel Frau
MemberYou can add this to your CSS:
.sidebar { border-left: solid 1px #dddddd; }
You'll probably then need to adjust the padding slightly, assuming you want a little space between the border and sidebar content. The padding is currently set to
10px 0 0
. You might want to change it to something like10px 0 0 10px
.Pixel Frau
MemberThe content areas all have different IDs, classes, width and alignment settings in your CSS.
Change the CSS for the interior sidebar to:`#sidebar_main_right {
background:
#00adee;
width: 204px;
float: left;
margin: 0px;
padding: 40px 0px 20px 0px;
}`And change the CSS for the main content area on the interior pages to:
#contentleft { width: 756px; margin: 0px; padding: 0px 0px 0px 0px; background: url(images/wrapbg.png) no-repeat; background-position: center bottom; vertical-align: top; }
Pixel Frau
MemberThis might help you: http://sillygrrl.com/2013/07/10/how-to-crop-thumbnails-in-wordpress/
Pixel Frau
MemberIf you take a look at the CSS for the active menu item, you'll find this:
#header .menu li a:active, #header .menu .current_page_item a, #header .menu .current-cat a, #header .menu .current-menu-item a, #header .menu .current_page_item a:hover, #header .menu .current-cat a:hover, #header .menu .current-menu-item a:hover { -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; background: url(images/menu-active.png) repeat-x; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom: 3px solid #386a8d; color: #fff !important; text-shadow: #2d5876 -1px -1px; }
This bit adds the rounded corners:
-moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px;
To add the same rounded corners to the non-active menu items, change this:
#header .menu a { border-bottom: 3px solid #44928f; color: #d4bf95; display: block; padding: 16px 21px 10px; position: relative; text-decoration: none; text-shadow: #2e6a67 1px 1px; }
to this:
#header .menu a { border-bottom: 3px solid #44928f; color: #d4bf95; display: block; padding: 16px 21px 10px; position: relative; text-decoration: none; text-shadow: #2e6a67 1px 1px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; }
Pixel Frau
MemberLooks like increasing the top margin for .site-inner should do it. It's currently set to 6.5rem/65px.
Pixel Frau
MemberThanks. That was my thought, but wasn't sure how to implement it.
Pixel Frau
MemberYou might want to watch this video about how to use Firebug to help you find and test CSS.
Using Firebug, I can see the page title on http://mikemetcalfe.co/e-store/ has been assigned borders (double lines):
.page-title {
border-bottom: double #ddd;
border-top: double #ddd;
font-family: 'Raleway', serif;
font-size: 30px;
line-height: 1.0;
overflow: hidden;
padding: 25px 0;
text-align: center;
}To remove the borders, go to Genesis –> Custom Code –> Custom CSS. Replace the above code with the following:
.page-title {
/*border-bottom: double #ddd;*/
/*border-top: double #ddd;*/
font-family: 'Raleway', serif;
font-size: 30px;
line-height: 1.0;
overflow: hidden;
padding: 25px 0;
text-align: center;
}Pixel Frau
MemberPlease post a link to your site so we can help you.
-
AuthorPosts