Forum Replies Created
-
AuthorPosts
-
frobnMember
When you used two sections for the middle widgets it broke the way the images line up and the background color is gray when you are within the width of an ipad.
Here is a partial work-around:
@media only screen and (max-width: 768px) {.home-middle .featured-content.featuredpost {
background-color: transparent;}}
Additional css will make the images to drop under each other.
i.e.
.agency-pro-home .home-middle .featuredpost .entry {
clear:both;}Hope this helps.
frobnMemberThe previous suggestion should work. Did you try clearing your browser?
You can also try this:
.home h1.entry-title {
display: none;
}frobnMemberYou'll need to modify 3 files:
Your functions.php file
Your home.php file
Your style.css fileTutorials:
"Adding/Duplicating Home Page Widgets in Genesis"
and
"How to Add a Widget Area to a Page Using Genesis"
https://www.nutsandboltsmedia.com/how-to-add-a-widget-area-to-a-page-using-genesis/frobnMemberfrobnMemberQuickest way to do it is with css.
Put this in your style sheet:
@media only screen and (max-width: 400px) {
.site-header {display:none}
}Change the min-width to whatever width you want the header to disappear.
If you want an alternate header for mobile you can include it in the css instead of display:none by declaring a different image, i.e.
@media only screen and (max-width: 400px) {
.site-header { background-image: url("your-mobile-image.png") }
}Hope this helps.
frobnMemberWhen you uploaded the theme did you upload the style.css also?
Eliminating the background selectors in .image-section should work. You can also add a background selector of none.
under:
background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%);add: background: none;
or at the end of your style.css add:
.image-section { background: none;}
frobnMemberI think the freelance theme an Add topnav section function
Edit functions.php and remove it.
p.s. it is best to make a backup of the functions.php and edit through the cpanel or ftp
frobnMemberIt appears you have the logo image in #header, take it out of #header and put it in the #title-area
frobnMemberInclude this css at the bottom of your style.css
#title { font-size: 54px; }
if you want a different font than the default font
add
font-family: 'your font';
If you do change the font you will probably need to change the size so that it fits properly.
If you want to see what fonts your theme is using open style.css in a text editor and search for 'font-family'
frobnMemberThe search bar is a widget in the Header-Right widget area. Replace it with your logo.
frobnMemberYou have a typo. It should be #mobilemen
I do things like that all the time. 🙂
frobnMemberTo style the overall menu (menu container) add your custom css to #menu-mobilemen
To style the menu items add your custom css to #menu-mobilmen .menu li
March 8, 2013 at 7:44 am in reply to: Need Primary Menu & Header Alignment Help Quattro Theme #24976frobnMemberPart of the problem is the top menu list search is floated right. Change the css in .menu li.right then align the top menu to center.
March 7, 2013 at 1:58 pm in reply to: How to remove page name from beginning of pages but NOT from posts #24836frobnMemberInclude the page-id # in Bourn's PHP
if ( is_page( page# )
March 7, 2013 at 6:58 am in reply to: How to remove page name from beginning of pages but NOT from posts #24763frobnMemberThe page name and page id are in the body classes
Try
</pre> /* landing page */ .landing . entry-title {display:none;} <pre> /*specific page*/ .page-id-176 .entry-title {display:none; }
-
AuthorPosts