sumowebsite
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Shopping] colorsGo to “Appearance > Customize > CSS” and insert this code.
body { background-color: #000; }
Forum: Themes and Templates
In reply to: [Shopping] Change the colour of the menu bannerGo to “Appearance > Customize > CSS” and drop this code and change the hex color to your liking
.nav-primary { background:#96588a; background:-webkit-gradient(linear,left top,left bottom,from(#ad74a2),to(#96588a)); background:-webkit-linear-gradient(#ad74a2,#96588a); background:-moz-linear-gradient(center top,#ad74a2 0,#96588a 100%); background:-moz-gradient(center top,#ad74a2 0,#96588a 100%); } .omega-nav-menu .current_page_item a, .omega-nav-menu a:hover { background:#ad74a2; } .omega-nav-menu .sub-menu, .omega-nav-menu .children { background:#96588a; z-index: 99; }
Forum: Themes and Templates
In reply to: [Shopping] horizontal menu footerDropdown menu on the footer is not common. However, you can insert Custom Menu widget into Footer Widget area.
Forum: Themes and Templates
In reply to: [Custom] Description not showingThis theme was designed without Blog Description. But the description still show up on the homepage title
Forum: Themes and Templates
In reply to: [Composer] Different Banners on each pageUse Featured Image / Post_Thumbnails to have different banner on each page.
simply adjust padding to change height
.banner { padding: 30px 0px; }
Forum: Themes and Templates
In reply to: [Composer] Disable parallax effect for header imageAwesome! You’re most welcome ??
Forum: Themes and Templates
In reply to: [Church] Content OpacityThis CSS works for me.
.site-inner .wrap { opacity: 0.7; }
Also, make sure you use the latest version
Forum: Themes and Templates
In reply to: [Sans-serif] How do i enable left sidebar?Try install Omega Legacy plugin, you’ll find theme layout option
Forum: Themes and Templates
In reply to: [Mobile] menu dropdown url replaces with #This is the default behavior of Bootstrap js, I guess they set that way on purpose, mobile tab friendly.
Forum: Themes and Templates
In reply to: [Composer] Disable parallax effect for header imagePlease try this custom css solution. (Go to “Appearance > Customize > CSS”)
1. disable the parallax feature.banner { background-attachment: scroll; background-position: 0px 0px !important; }
2.
.banner .banner-title { text-shadow: 0px 0px 5px #000; }