Forum Replies Created
-
AuthorPosts
-
rasor
Participantrasor
Participantrasor
ParticipantI believe the code to be changed in somewhere around line 640 of your style.css. change the font-size to whatever size you like.
.content-box .icon { font-size: 40px; }
rasor @ WPBasics.org | Buy me a coffee
March 28, 2017 at 10:20 am in reply to: changing the hyperlink underscore colour in Atmosphere Pro #203967rasor
ParticipantTry changing line 1380 of you style.css to
.entry-content a { border-bottom: 1px solid #55acee; }
rasor @ WPBasics.org | Buy me a coffee
rasor
ParticipantYour image may be to small.
try adding the following to your css.front-page-1 { background-repeat: no-repeat; background-size: cover; }
rasor @ WPBasics.org | Buy me a coffee
rasor
Participantrasor
Participantrasor
Participantrasor
Participantadd this to your style.css
.title-area { max-width: 100%; }
and this
.site-header .widget-area { font-size: 150%; width: 20%; }
rasor @ WPBasics.org | Buy me a coffee
rasor
ParticipantWhat Victor said is correct. Can you put the number in the widget on your life site so we can have a look? Maybe their is some formatting required.
rasor @ WPBasics.org | Buy me a coffee
rasor
Participanttry adding this
div#home-top { opacity: 1!important;}
to your style sheet
rasor @ WPBasics.org | Buy me a coffee
January 6, 2016 at 3:26 pm in reply to: Altitude Pro front page widgets stacking and not resizing properly #175785rasor
ParticipantIt's kind of hard to diagnose what the problem is without seeing the dashboard of your site. If you want to grant me temporary admin access I will have a look for you. You can email me at [email protected].
rasor @ WPBasics.org | Buy me a coffee
January 6, 2016 at 2:33 pm in reply to: Altitude Pro front page widgets stacking and not resizing properly #175782rasor
ParticipantJanuary 6, 2016 at 1:38 pm in reply to: Altitude Pro front page widgets stacking and not resizing properly #175776rasor
ParticipantHave you tried deleting the theme and re-installing a fresh copy. Just to make sure nothing has been corrupted.
rasor @ WPBasics.org | Buy me a coffee
January 6, 2016 at 1:24 pm in reply to: Altitude Pro front page widgets stacking and not resizing properly #175771rasor
Participantrasor
Participantlook for section
@media only screen and (max-width: 800px)
in the style.css file. there should be a line called.image-section .flexible-widgets
adjust the padding-bottom as required. The lines you are looking for looks like this
.image-section .flexible-widgets { padding-bottom: 80px; }
rasor @ WPBasics.org | Buy me a coffee
January 1, 2016 at 8:27 pm in reply to: How to del the "hamburger" responsive toggle & just have menu perma expanded? #175363rasor
ParticipantComment out line 2263 of the style.css as below
@media only screen and (max-width: 600px) { .genesis-nav-menu.responsive-menu, .genesis-nav-menu.responsive-menu > .menu-item > .sub-menu { /*display: none;*/ }
A little more CSS and you can center the menu links and remove the hamburger menu icon
rasor @ WPBasics.org | Buy me a coffee
rasor
ParticipantLooks okay on my computer. Maybe you need to clear you cache.
rasor @ WPBasics.org | Buy me a coffee
rasor
ParticipantDid you add the css I provided above to your style sheet? That should bring in inline.
rasor @ WPBasics.org | Buy me a coffee
rasor
Participantadd this to functions.php
/* Add Logo to Nav bar*/ add_filter( 'genesis_nav_items', 'ja_logo_to_nav', 10, 2 ); add_filter( 'wp_nav_menu_items', 'ja_logo_to_nav', 10, 2 ); /** * Based on tutorial Follow Icons in Menu * @author Bill Erickson * @link http://www.billerickson.net/genesis-wordpress-nav-menu-content/ * * @param string $menu * @param array $args * @return string */ function ja_logo_to_nav($menu, $args) { $args = (array)$args; if ( 'primary' !== $args['theme_location'] ) return $menu; $logo = '<li id="logoNav"><img src="'.get_bloginfo('stylesheet_directory').'/images/logo.png" /></li> '; return $logo . $menu; }
and this to style.css
/* Add Logo to left of nav bar*/ #logoNav { float: left;} #logoNav img { max-height: 50px; margin-top: 12px; }
Adjust the CSS as required.
It should work. Let me know how it goes.
rasor @ WPBasics.org | Buy me a coffee
-
AuthorPosts