orangeblowfish
Forum Replies Created
-
you can remove them by adding this line of code in your css file
.soliloquy-control-nav { display: none; }Forum: Plugins
In reply to: Plugin Soliloquy Lite slider: dots & navigation arrows moved upI have removed the dots from the screen altogether with this line of code
.soliloquy-control-nav { display: none; }Forum: Themes and Templates
In reply to: overlapping image in footerI also added some extra lines of code which now makes the image hover to the left however on different screen sizes he hovers in different positions.
.colin img { bottom: -260px; left:200px; position: absolute; z-index: 4; }how can he fixes him to the left edge of the page
Forum: Themes and Templates
In reply to: overlapping image in footerHi Kjodle i tried this and it didnt work. i play ed with the code a bit and ended up having the image overlapping the page a bit but it is at the bottom of the page now and isnt aligned to the center
.colin img { position: absolute; }any assistance would be much appreciated
Forum: Plugins
In reply to: adding a menu on a pagei had to remove the new functions.php as the site wouldn’t even load after i added it. please let me know what i should do
Forum: Plugins
In reply to: adding a menu on a pageHi WPyogi
I followed the instructions on the link
I use twentytwlve theme so in my child theme i created a functions.php file and then input the codefunction register_my_menu() { register_nav_menu('header-menu',__( 'Header Menu' )); } add_action( 'init', 'register_my_menu' );followed by
function register_my_menus() { register_nav_menus( array( 'header-menu' => __( 'Header Menu' ), 'extra-menu' => __( 'Extra Menu' ) ) ); } add_action( 'init', 'register_my_menus' );nothing happened and in fact the page wouldn’t save! please help!
Forum: Themes and Templates
In reply to: Drop Down Menu Issues after changing marginsthanks paulwpxp i did some late night reading and did some changes to each set of changes i made on the css to make them fit based on the media device size!
again thank you for all your help!Forum: Themes and Templates
In reply to: Drop Down Menu Issues after changing marginsPaulwpxp that worked awesome!! you are a real life saver!
I will also save header and logo as 8bit png
you mentioned about my changes not working on a small screen and i just checked and it comes out really bad! how do i wrap up my current changes in a media query?
again thank you for the advice as i am new to css and html!